diff --git a/.github/get_actual_json_path.sh b/.github/get_actual_json_path.sh new file mode 100644 index 000000000..7b32873de --- /dev/null +++ b/.github/get_actual_json_path.sh @@ -0,0 +1,28 @@ +#!/bin/bash +SCRIPT_PATH=$(dirname "$0") +MAIN_DIRECTORY=${SCRIPT_PATH%/*} + +# Retrieve the folder names and extract the version numbers +folders=($(ls -1 ${MAIN_DIRECTORY}/../$1)) +version_numbers=() +for folder in "${folders[@]}"; do + # Extract the version number by removing the "v" prefix and any non-numeric characters + version_number=$(echo ${folder#v} | tr -dc '[:digit:]') + # Append the extracted version number to the array + version_numbers+=($version_number) +done + +# Sort the version numbers in descending order +sorted_version_numbers=($(printf '%s\n' "${version_numbers[@]}" | sort -rn)) + +# Retrieve the latest version folder +latest_version_number=${sorted_version_numbers[0]} + +# Check if second argument exists and if so, subtract 1 from the latest version +if [ -n "$2" ]; then + latest_version_number=$((latest_version_number - 1)) +fi + +latest_version_folder="v${latest_version_number}" + +echo $latest_version_folder diff --git a/.github/workflows/check_commit_rules.yaml b/.github/workflows/check_commit_rules.yaml new file mode 100644 index 000000000..ad8a29b6e --- /dev/null +++ b/.github/workflows/check_commit_rules.yaml @@ -0,0 +1,28 @@ +name: Check commit rules + +on: + pull_request: + branches: [master] + +jobs: + check-pre-commit: + runs-on: ubuntu-latest + steps: + - uses: tibdex/github-app-token@v1 + id: generate-token + with: + app_id: ${{ secrets.PR_APP_ID}} + private_key: ${{ secrets.PR_APP_TOKEN}} + + - uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + token: ${{ steps.generate-token.outputs.token }} + + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: pre-commit/action@v3.0.0 + + - uses: stefanzweifel/git-auto-commit-action@v5 + if: always() diff --git a/.github/workflows/make-pull-request/action.yml b/.github/workflows/make-pull-request/action.yml new file mode 100644 index 000000000..f71c151dc --- /dev/null +++ b/.github/workflows/make-pull-request/action.yml @@ -0,0 +1,57 @@ +name: Make pull request +description: Create commit and make pull-request +inputs: + commit-files: + description: "Which files will add to commit" + required: true + commit-message: + description: "Message for creating a commit" + required: true + app-id: + description: "Id for getting access to GitHub app" + required: true + app-token: + description: "Token for getting access to GitHub app" + required: true + branch-name: + description: "Name for branch for creating a commit" + required: true + pr-base: + description: "Base branch for creating PR" + required: true + pr-title: + description: "Title for creating Pull Request" + required: true + pr-body: + description: "Body for creating Pull Request" + required: true + pr-reviewer: + description: "Reviewers for creating PR, support comma delimiter" + required: false + default: "stepanLav,leohar" + +runs: + using: "composite" + steps: + - uses: tibdex/github-app-token@v1 + id: generate-token + with: + app_id: ${{ inputs.app-id }} + private_key: ${{ inputs.app-token }} + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v5 + with: + token: ${{ steps.generate-token.outputs.token }} + commit-message: ${{ inputs.commit-message }} + add-paths: ${{ inputs.commit-files }} + committer: novasama-bot <140433189+novasama-bot[bot]@users.noreply.github.com> + author: novasama-bot <140433189+novasama-bot[bot]@users.noreply.github.com> + signoff: false + branch: ${{ inputs.branch-name }} + delete-branch: true + title: ${{ inputs.pr-title }} + body: ${{ inputs.pr-body }} + reviewers: ${{ inputs.pr-reviewer }} + draft: false + base: ${{ inputs.pr-base }} diff --git a/.github/workflows/pull_request_for_xcm.yaml b/.github/workflows/pull_request_for_xcm.yaml new file mode 100644 index 000000000..5d270d468 --- /dev/null +++ b/.github/workflows/pull_request_for_xcm.yaml @@ -0,0 +1,103 @@ +name: Check pull requests + +on: + pull_request: + paths: + - 'xcm/**' + pull_request_target: + types: [labeled] + +env: + BODY_FILE: body_file.txt + +jobs: + create-comment-with-changes: + runs-on: ubuntu-latest + name: Create a comment with xcm changed data + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: ๐Ÿ›  Set up actual paths + uses: ./.github/workflows/setup-path + + - name: Was transfers.json changed? + id: prod + uses: tj-actions/changed-files@v18.2 + with: + files: | + ${{ env.XCM_JSON_PATH }} + + - name: Was transfers_dev.json changed? + id: dev + uses: tj-actions/changed-files@v18.2 + with: + files: | + ${{ env.DEV_XCM_JSON_PATH }} + + - name: Was previous transfers.json changed? + id: prev_prod + uses: tj-actions/changed-files@v18.2 + with: + files: | + ${{ env.PREVIOUS_XCM_JSON_PATH }} + + - name: Was previous transfers.json changed? + id: prev_dev + uses: tj-actions/changed-files@v18.2 + with: + files: | + ${{ env.PREVIOUS_DEV_XCM_JSON_PATH }} + + - name: Set GITHUB_BASE environment variable + run: echo "GITHUB_BASE=${{ github.event.pull_request.base.ref }}" >> $GITHUB_ENV + + - name: Install dependencies + run: make init + + - name: Build body text + run: echo This comment was written by a bot! >> ${{ env.BODY_FILE }} + + - name: Generate message for PROD + if: steps.prod.outputs.any_changed == 'true' + run: | + make pr-comment-creation PR_ENV=${{ env.XCM_VERSION }}-PROD PR_FILE_NAME=${{ env.BODY_FILE }} XCM_PATH=${{ env.XCM_JSON_PATH }} CHAINS_PATH=${{ env.CHAINS_JSON_PATH }} + + - name: Generate message for DEV + if: steps.dev.outputs.any_changed == 'true' + run: | + make pr-comment-creation PR_ENV=${{ env.XCM_VERSION }}-DEV PR_FILE_NAME=${{ env.BODY_FILE }} XCM_PATH=${{ env.DEV_XCM_JSON_PATH }} CHAINS_PATH=${{ env.DEV_CHAINS_JSON_PATH }} + + - name: Generate message for prvious PROD + if: steps.prev_prod.outputs.any_changed == 'true' + run: | + make pr-comment-creation PR_ENV=${{ env.PREVIOUS_XCM_VERSION }}-PROD PR_FILE_NAME=${{ env.BODY_FILE }} XCM_PATH=${{ env.PREVIOUS_XCM_JSON_PATH }} CHAINS_PATH=${{ env.PREVIOUS_CHAINS_JSON_PATH }} + + - name: Generate message for prvious DEV + if: steps.prev_dev.outputs.any_changed == 'true' + run: | + make pr-comment-creation PR_ENV=${{ env.PREVIOUS_XCM_VERSION }}-DEV PR_FILE_NAME=${{ env.BODY_FILE }} XCM_PATH=${{ env.PREVIOUS_DEV_XCM_JSON_PATH }} CHAINS_PATH=${{ env.PREVIOUS_DEV_CHAINS_JSON_PATH }} + + - name: Find Comment + uses: peter-evans/find-comment@v2 + id: fc + with: + issue-number: ${{ github.event.pull_request.number }} + comment-author: 'github-actions[bot]' + body-includes: This comment was written by a bot! + + - name: Create comment + if: steps.fc.outputs.comment-id == '' + uses: peter-evans/create-or-update-comment@v2 + with: + issue-number: ${{ github.event.pull_request.number }} + body-file: ${{ env.BODY_FILE }} + + - name: Update comment + if: steps.fc.outputs.comment-id != '' + uses: peter-evans/create-or-update-comment@v2 + with: + comment-id: ${{ steps.fc.outputs.comment-id }} + body-file: ${{ env.BODY_FILE }} + edit-mode: replace diff --git a/.github/workflows/run_integration_tests.yaml b/.github/workflows/run_integration_tests.yaml new file mode 100644 index 000000000..e7a6ec7e6 --- /dev/null +++ b/.github/workflows/run_integration_tests.yaml @@ -0,0 +1,135 @@ +name: Integration tests for config + +on: + pull_request: + paths: + - "chains/**" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +env: + BODY_FILE: comment-body.txt + +jobs: + prepare-matrix: + runs-on: ubuntu-latest + outputs: + matrix: ${{ steps.set-matrix.outputs.matrix }} + current: ${{ steps.current.outputs.any_changed }} + previous: ${{ steps.previous.outputs.any_changed }} + name: Check which version was changed + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: ๐Ÿ›  Set up actual paths + uses: ./.github/workflows/setup-path + + - name: Was chains.json changed? + id: current + uses: tj-actions/changed-files@v18.2 + with: + files: | + ${{ env.CHAINS_JSON_PATH }} + + - name: Was previous chains.json changed? + id: previous + uses: tj-actions/changed-files@v18.2 + with: + files: | + ${{ env.PREVIOUS_CHAINS_JSON_PATH }} + + - name: Generate test paths + run: | + if [[ "${{ steps.current.outputs.any_changed }}" == 'true' ]]; then + echo "TEST_PATHS=${{ env.CHAINS_JSON_PATH }}" >> $GITHUB_ENV + fi + if [[ "${{ steps.previous.outputs.any_changed }}" == 'true' ]]; then + if [[ -n "${{ env.TEST_PATHS }}" ]]; then + echo "TEST_PATHS=${{ env.TEST_PATHS }},${{ env.PREVIOUS_CHAINS_JSON_PATH }}" >> $GITHUB_ENV + else + echo "TEST_PATHS=${{ env.PREVIOUS_CHAINS_JSON_PATH }}" >> $GITHUB_ENV + fi + fi + - name: Set matrix + id: set-matrix + run: | + echo "::set-output name=matrix::{\"test_path\": [\"${TEST_PATHS}\"]}" + + + integration-tests: + name: ${{ matrix.test_path }} + runs-on: ubuntu-latest + needs: prepare-matrix + if: always() && (needs.prepare-matrix.outputs.current == 'true' || needs.prepare-matrix.outputs.previous == 'true') + strategy: + fail-fast: false + matrix: + test_path: ${{fromJson(needs.prepare-matrix.outputs.matrix).test_path}} + + steps: + - uses: actions/checkout@v4 + - name: Set up actual paths + uses: ./.github/workflows/setup-path + + - name: Install dependencies + run: make init + + - name: Run test + run: CHAINS_JSON_PATH=${{ matrix.test_path }} make test-core + continue-on-error: true + + - name: Surface failing tests + if: always() + uses: pmeier/pytest-results-action@main + with: + path: test-results.xml + + process-results: + runs-on: ubuntu-latest + needs: integration-tests + if: always() && (needs.integration-tests.result == 'failure' || needs.integration-tests.result == 'success') + steps: + - name: Save URLs to file + run: echo "๐Ÿงช Test results" > ${{ env.BODY_FILE }} + + - name: Install jq + run: sudo apt-get install jq + + - name: Get job IDs and create URLs + id: get-job-ids + run: | + url="https://api.github.com/repos/${{ github.repository }}/actions/runs/${{ github.run_id }}/jobs" + response=$(curl --silent --location "$url") + job_ids=$(echo "$response" | jq '.jobs[1:-1][] | .id') + urls="" + for id in $job_ids + do + echo "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/1#summary-$id" >> ${{ env.BODY_FILE }} + done + + - name: Find Comment + uses: peter-evans/find-comment@v2 + id: fc + with: + issue-number: ${{ github.event.pull_request.number }} + comment-author: 'github-actions[bot]' + body-includes: ๐Ÿงช Test results + + - name: Create comment + if: steps.fc.outputs.comment-id == '' + uses: peter-evans/create-or-update-comment@v2 + with: + issue-number: ${{ github.event.pull_request.number }} + body-file: ${{ env.BODY_FILE }} + + - name: Update comment + if: steps.fc.outputs.comment-id != '' + uses: peter-evans/create-or-update-comment@v2 + with: + comment-id: ${{ steps.fc.outputs.comment-id }} + body-file: ${{ env.BODY_FILE }} + edit-mode: replace diff --git a/.github/workflows/setup-path/action.yml b/.github/workflows/setup-path/action.yml new file mode 100644 index 000000000..20742a82a --- /dev/null +++ b/.github/workflows/setup-path/action.yml @@ -0,0 +1,24 @@ +name: Set actual chains.json path +description: Push actual paths to env +runs: + using: "composite" + steps: + - name: Setup version to variables + run: | + echo "CHAINS_VERSION=$(bash .github/get_actual_json_path.sh chains)" >> "$GITHUB_ENV" + echo "PREVIOUS_CHAINS_VERSION=$(bash .github/get_actual_json_path.sh chains 1)" >> "$GITHUB_ENV" + echo "XCM_VERSION=$(bash .github/get_actual_json_path.sh xcm)" >> "$GITHUB_ENV" + echo "PREVIOUS_XCM_VERSION=$(bash .github/get_actual_json_path.sh xcm 1)" >> "$GITHUB_ENV" + shell: bash + + - name: Setup json paths + run: | + echo "DEV_CHAINS_JSON_PATH=chains/${{ env.CHAINS_VERSION }}/chains_dev.json" >> "$GITHUB_ENV" + echo "CHAINS_JSON_PATH=chains/${{ env.CHAINS_VERSION }}/chains.json" >> "$GITHUB_ENV" + echo "PREVIOUS_DEV_CHAINS_JSON_PATH=chains/${{ env.PREVIOUS_CHAINS_VERSION }}/chains_dev.json" >> "$GITHUB_ENV" + echo "PREVIOUS_CHAINS_JSON_PATH=chains/${{ env.PREVIOUS_CHAINS_VERSION }}/chains.json" >> "$GITHUB_ENV" + echo "DEV_XCM_JSON_PATH=xcm/${{ env.XCM_VERSION }}/transfers_dev.json" >> "$GITHUB_ENV" + echo "XCM_JSON_PATH=xcm/${{ env.XCM_VERSION }}/transfers.json" >> "$GITHUB_ENV" + echo "PREVIOUS_DEV_XCM_JSON_PATH=xcm/${{ env.PREVIOUS_XCM_VERSION }}/transfers_dev.json" >> "$GITHUB_ENV" + echo "PREVIOUS_XCM_JSON_PATH=xcm/${{ env.PREVIOUS_XCM_VERSION }}/transfers.json" >> "$GITHUB_ENV" + shell: bash diff --git a/.github/workflows/test_json_data.yaml b/.github/workflows/test_json_data.yaml deleted file mode 100644 index 4895c93ca..000000000 --- a/.github/workflows/test_json_data.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Compare JSON data with blockchain - -on: - schedule: - - cron: '0 23 * * *' - workflow_dispatch: - inputs: - file_path: - description: 'Which file will test?' - required: true - type: string - default: "/chains/v4/chains.json" - - -env: - JSON_PATH: "/chains/v4/chains.json" - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout current repository to Master branch - uses: actions/checkout@v1 - - - name: Check file_path reassignment - if: ${{ github.event.inputs.file_path }} - run: echo "JSON_PATH=${{ github.event.inputs.file_path }}" >> $GITHUB_ENV - - - name: Install dependencies - run: pip install -r requirements.txt - - - name: Run test - run: python -m pytest --rootdir . --override-ini junit_family=xunit1 -n auto "./tests/test_network_parameters.py" \ No newline at end of file diff --git a/.github/workflows/test_network_availability.yaml b/.github/workflows/test_network_availability.yaml deleted file mode 100644 index 89a5a70ee..000000000 --- a/.github/workflows/test_network_availability.yaml +++ /dev/null @@ -1,30 +0,0 @@ -name: Check nodes availability - -on: - workflow_dispatch: - inputs: - file_path: - description: 'Which file will test?' - required: true - type: string - default: "/chains/v4/chains.json" - -env: - JSON_PATH: "/chains/v4/chains.json" - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout current repository to Master branch - uses: actions/checkout@v1 - - - name: Check file_path reassignment - if: ${{ github.event.inputs.file_path }} - run: echo "JSON_PATH=${{ github.event.inputs.file_path }}" >> $GITHUB_ENV - - - name: Install dependencies - run: pip install -r requirements.txt - - - name: Run test - run: python -m pytest --rootdir . --override-ini junit_family=xunit1 -n auto "./tests/test_network_availability.py" \ No newline at end of file diff --git a/.github/workflows/trigger_event.yml b/.github/workflows/trigger_event.yml new file mode 100644 index 000000000..d68020ddc --- /dev/null +++ b/.github/workflows/trigger_event.yml @@ -0,0 +1,43 @@ +name: Reusable workflow for trigger event in another repo + +on: + workflow_call: + inputs: + repository: + required: true + type: string + event-type: + required: true + type: string + payload: + required: true + type: string + + secrets: + PR_APP_ID: + required: true + PR_APP_TOKEN: + required: true + +env: + PR_APP_ID: ${{ secrets.PR_APP_ID}} + PR_APP_TOKEN: ${{ secrets.PR_APP_TOKEN}} + +jobs: + trigger-event: + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: tibdex/github-app-token@v1 + id: generate-token + with: + app_id: ${{ env.PR_APP_ID }} + private_key: ${{ env.PR_APP_TOKEN }} + + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v2 + with: + token: ${{ steps.generate-token.outputs.token }} + repository: ${{ inputs.repository }} + event-type: ${{ inputs.event-type }} + client-payload: ${{ inputs.payload }} diff --git a/.github/workflows/update_network_list.yaml b/.github/workflows/update_network_list.yaml index fef27c380..a44670b51 100644 --- a/.github/workflows/update_network_list.yaml +++ b/.github/workflows/update_network_list.yaml @@ -1,27 +1,33 @@ -name: README build +name: Update project metadata on: push: branches: - master + workflow_dispatch: + jobs: check: runs-on: ubuntu-latest outputs: - v4chains: ${{ steps.v4chains.outputs.any_changed }} + chains: ${{ steps.chains.outputs.any_changed }} dapps: ${{ steps.dapps.outputs.any_changed }} - v4chains_dev: ${{ steps.v4chains_dev.outputs.any_changed }} + chains_dev: ${{ steps.chains_dev.outputs.any_changed }} + xcm: ${{ steps.xcm_chains.outputs.any_changed }} steps: - name: Checkout current repository to Master branch uses: actions/checkout@v1 - - name: Was v4/chains.json changed? - id: v4chains + - name: Set up actual paths + uses: ./.github/workflows/setup-path + + - name: Was chains.json changed? + id: chains uses: tj-actions/changed-files@v18.2 with: files: | - chains/v4/chains.json + ${{ env.CHAINS_JSON_PATH }} - name: Was dapps.json changed? id: dapps @@ -31,48 +37,48 @@ jobs: dapps/dapps.json - name: Was chains_dev changed? - id: v4chains_dev + id: chains_dev uses: tj-actions/changed-files@v18.2 with: files: | - chains/v4/chains_dev.json + ${{ env.DEV_CHAINS_JSON_PATH }} + + - name: Was xcm list changed? + id: xcm_chains + uses: tj-actions/changed-files@v18.2 + with: + files: | + ${{ env.XCM_JSON_PATH }} + ${{ env.DEV_XCM_JSON_PATH }} chains_update: runs-on: ubuntu-latest needs: check - if: always() && (needs.check.outputs.v4chains == 'true') + if: always() && (needs.check.outputs.chains == 'true') steps: - name: Checkout current repository to Master branch uses: actions/checkout@v1 + - name: Set up actual paths + uses: ./.github/workflows/setup-path + - name: Install dependencies - run: pip install -r requirements.txt + run: make init - name: Generate README file - run: python ./scripts/generate_network_list.py + run: make generate_network_list - - name: Commit files - run: | - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git add ./chains/README.md - git commit -m "Update networks" - - name: Push changes - uses: ad-m/github-push-action@master + - name: Make Pull Request + uses: ./.github/workflows/make-pull-request with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: refs/heads/update-networks-${{github.run_number}} + commit-files: ./chains/README.md + commit-message: Update networks list + app-id: ${{ secrets.PR_APP_ID}} + app-token: ${{ secrets.PR_APP_TOKEN}} + branch-name: update-networks-readme + pr-title: Update network list + pr-body: Update networks list in https://github.com/novasamatech/nova-utils/tree/master/chains + pr-base: master - - uses: repo-sync/pull-request@v2 - name: pull-request - with: - source_branch: "update-networks-${{github.run_number}}" - destination_branch: "master" - pr_title: "Update network list" - pr_body: | - Update networks list in https://github.com/nova-wallet/nova-utils/tree/master/chains - pr_reviewer: "stepanLav" - pr_draft: false - github_token: ${{ secrets.GITHUB_TOKEN }} dapps_update: runs-on: ubuntu-latest @@ -82,70 +88,80 @@ jobs: - name: Checkout current repository to Master branch uses: actions/checkout@v1 + - name: Set up actual paths + uses: ./.github/workflows/setup-path + - name: Install dependencies - run: pip install -r requirements.txt + run: make init - name: Generate new Dapps list file - run: python ./scripts/generate_dapps_list.py - - - name: Commit files - run: | - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git add ./dapps/README.md - git commit -m "Update dapps list" - - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: refs/heads/update-dapps-${{github.run_number}} + run: make generate_dapp_list - - uses: repo-sync/pull-request@v2 - name: pull-request + - name: Make Pull Request + uses: ./.github/workflows/make-pull-request with: - source_branch: "update-dapps-${{github.run_number}}" - destination_branch: "master" - pr_title: "Update Dapps list" - pr_body: | - Update dapps list in https://github.com/nova-wallet/nova-utils/tree/master/dapps - pr_reviewer: "stepanLav" - pr_draft: false - github_token: ${{ secrets.GITHUB_TOKEN }} + commit-files: ./dapps/README.md + commit-message: Update dapps list + app-id: ${{ secrets.PR_APP_ID}} + app-token: ${{ secrets.PR_APP_TOKEN}} + branch-name: update-dapps-readme + pr-title: Update Dapps list + pr-body: Update dapps list in https://github.com/novasamatech/nova-utils/tree/master/dapps + pr-base: master test_json_update: runs-on: ubuntu-latest needs: check - if: always() && (needs.check.outputs.v4chains_dev == 'true') + if: always() && (needs.check.outputs.chains_dev == 'true') steps: - name: Checkout current repository to Master branch uses: actions/checkout@v1 + - name: Set up actual paths + uses: ./.github/workflows/setup-path + - name: Install dependencies - run: pip install -r requirements.txt + run: make init - name: Generate new Test data file - run: python ./scripts/update_test_data.py + run: make generate_test_file + + - name: Make Pull Request + uses: ./.github/workflows/make-pull-request + with: + commit-files: ./tests/chains_for_testBalance.json + commit-message: Update test data file + app-id: ${{ secrets.PR_APP_ID}} + app-token: ${{ secrets.PR_APP_TOKEN}} + branch-name: update-test-file + pr-title: Update Test data File + pr-body: Update test data file ./tests/chains_for_testBalance.json + pr-base: master - - name: Commit files - run: | - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --local user.name "github-actions[bot]" - git add ./tests/chains_for_testBalance.json - git commit -m "Update test data file" - - name: Push changes - uses: ad-m/github-push-action@master + xcm_table_update: + runs-on: ubuntu-latest + needs: check + if: always() && (needs.check.outputs.xcm == 'true') + steps: + - name: Checkout current repository + uses: actions/checkout@v1 + + - name: Checkout support repo + uses: actions/checkout@v1 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: refs/heads/update-tests-${{github.run_number}} + path: ./support + repository: nova-wallet/support-utils + ref: master + token: ${{ secrets.PAT_TOKEN }} - - uses: repo-sync/pull-request@v2 - name: pull-request + - name: Set up actual paths + uses: ./.github/workflows/setup-path + + - uses: actions/setup-python@v4 with: - source_branch: "update-tests-${{github.run_number}}" - destination_branch: "master" - pr_title: "Update Test data File" - pr_body: | - Update test data file - pr_reviewer: "stepanLav" - pr_draft: false - github_token: ${{ secrets.GITHUB_TOKEN }} + python-version: '3.9.15' + + - name: Generate google table + run: | + cd ../support + make install + make generate-google-table diff --git a/.github/workflows/update_type_files.yaml b/.github/workflows/update_type_files.yaml new file mode 100644 index 000000000..747c2c2c7 --- /dev/null +++ b/.github/workflows/update_type_files.yaml @@ -0,0 +1,36 @@ +name: Update types for all network + +on: + schedule: + - cron: '0 8 * * *' + workflow_dispatch: + +jobs: + chains_update: + runs-on: ubuntu-latest + steps: + - name: Checkout current repository to Master branch + uses: actions/checkout@v1 + + - name: Set up actual paths + uses: ./.github/workflows/setup-path + + - name: Install dependencies + run: make init + + - name: Update chain types + run: make generate_type_files + + - name: Make Pull Request + uses: ./.github/workflows/make-pull-request + with: + commit-files: . + commit-message: Update chain types + app-id: ${{ secrets.PR_APP_ID}} + app-token: ${{ secrets.PR_APP_TOKEN}} + branch-name: update-type-files + pr-title: Update types for networks + pr-body: This PR was generated automatically by the GitHub Action, **update-types**. + + Feel free to close this PR if the changes are not needed. + pr-base: master diff --git a/.github/workflows/update_xcm_data.yaml b/.github/workflows/update_xcm_data.yaml new file mode 100644 index 000000000..f852bc3fe --- /dev/null +++ b/.github/workflows/update_xcm_data.yaml @@ -0,0 +1,97 @@ +name: Update xcm coefficients + +on: + schedule: + - cron: '0 8 1/3 * *' + workflow_dispatch: + inputs: + environment: + required: true + description: Which file will be updated DEV or PROD + type: choice + default: PROD + options: + - DEV + - PROD + +jobs: + update-xcm: + runs-on: ubuntu-latest + + steps: + - name: Checkout current repository to Master branch + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Set environment + run: | + if [ "${{ github.event.inputs.environment }}" = "PROD" ]; then + echo "ENVIRONMENT=PROD" >> "$GITHUB_ENV" + else + echo "ENVIRONMENT=DEV" >> "$GITHUB_ENV" + fi + + - name: Checkout support repo + uses: actions/checkout@v2 + with: + path: ./support + repository: nova-wallet/support-utils + ref: master + token: ${{ secrets.PAT_TOKEN }} + + - name: ๐Ÿ›  Set up actual paths + uses: ./.github/workflows/setup-path + + - name: โš™๏ธ Install dependencies + run: | + cd ./support + make install + + - name: ๐Ÿฆพ Generate new xcm coefficients + run: | + cd ./support + make update-xcm + + - name: Move generated file + run: | + if [ "${{ github.event.inputs.environment }}" = "PROD" ]; then + mv support/transfers.json ${{ env.XCM_JSON_PATH }} + echo "COMMIT_FILE=${{ env.XCM_JSON_PATH }}" >> "$GITHUB_ENV" + echo "PR_REVIEWER=ERussel,leohar,valentunn,stepanLav" >> "$GITHUB_ENV" + else + mv support/transfers_dev.json ${{ env.DEV_XCM_JSON_PATH }} + echo "COMMIT_FILE=${{ env.DEV_XCM_JSON_PATH }}" >> "$GITHUB_ENV" + echo "PR_REVIEWER=leohar,stepanLav" >> "$GITHUB_ENV" + fi + + - name: Make Pull Request + uses: ./.github/workflows/make-pull-request + with: + commit-files: ${{ env.COMMIT_FILE }} + commit-message: Update xcm coefficients + app-id: ${{ secrets.PR_APP_ID}} + app-token: ${{ secrets.PR_APP_TOKEN}} + pr-reviewer: ${{ env.PR_REVIEWER }} + branch-name: update-xcm-coefficients + pr-title: ๐Ÿ†™ Update XCM coefficients for ${{ env.ENVIRONMENT }} env + pr-body: This PR was generated automatically ๐Ÿค– + pr-base: master + + alert: + runs-on: ubuntu-latest + needs: update-xcm + if: always() && (needs.update-xcm.result == 'failure') + env: + GITHUB_WORKFLOW_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} + steps: + - name: Report + uses: appleboy/telegram-action@master + with: + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} + message: | + XCM update workflow failed, lets check: + + Failed run: + ${{ env.GITHUB_WORKFLOW_URL }} diff --git a/.gitignore b/.gitignore index 67da4f82e..3f43d7ed4 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ .venv .vscode __pycache__ -.pytest_cache \ No newline at end of file +.pytest_cache +allure-results diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 000000000..b2a4ce996 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,8 @@ +repos: +- repo: https://github.com/novasamatech/pre-commit-hooks + rev: a0eca3e206a0ee7d824489540565ce280c1d2da9 + hooks: + - id: check-chains-json + - id: end-of-file-fixer + - id: trailing-whitespace + - id: check-json diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..d9a10c0d8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,176 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/NOTICE b/NOTICE new file mode 100644 index 000000000..48a3f1a7c --- /dev/null +++ b/NOTICE @@ -0,0 +1,5 @@ +Nova utils + +Copyright 2022-2023 Novasama Technologies PTE. LTD. +This product includes software developed at Novasama Technologies PTE. LTD. +License Rights transferred from Novasama Technologies PTE. LTD to Novasama Technologies GmbH starting from 1st of April 2023 diff --git a/README.md b/README.md index 924434404..c9d322a6b 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # Nova Utils ## About -This repo contains static information (logos, links, etc) to support client apps in Polkadot & Kusama ecosystem (e.g. [Nova Wallet]) to map it to the keys/ids from the network itself. +This repo contains static information (logos, links, etc.) to support client apps in Polkadot & Kusama ecosystem (e.g. [Nova Wallet]) to map it to the keys/ids from the network itself. -Note: For better UX in your app its recommended to -1. prepare UI states & logic when this information cannot be fetched due to github unavailability +Note: For better UX in your app it is recommended to +1. prepare UI states & logic when this information cannot be fetched due to gitHub unavailability 2. cache the data to cover part of the issue of 1. -### [List of supported networks](https://github.com/nova-wallet/nova-utils/tree/master/chains#list-of-supported-networks) -### [List of supported dapps](https://github.com/nova-wallet/nova-utils/tree/master/dapps#list-of-supported-dapps) +### [List of supported networks](https://github.com/novasamatech/nova-utils/tree/master/chains#supported-networks--assets-data) +### [List of supported dapps](https://github.com/novasamatech/nova-utils/tree/master/dapps#list-of-supported-dapps) ## Modules #### Crowdloan @@ -27,11 +27,23 @@ Contains JSON file with networks info: its token (ticker, precision), types, ava #### Dapps Contains JSON file with featured DApps -Note: To submit a DApp make sure it's not already in [DApps list](https://github.com/nova-wallet/nova-utils/tree/master/dapps#list-of-supported-networks) and if not submit a PR to repository. +Note: To submit a DApp make sure it's not already in [DApps list](https://github.com/novasamatech/nova-utils/tree/master/dapps#list-of-supported-networks) and if not submit a PR to repository. #### Icons Contains the iconography for the different parachains and DApp's. Note: Icons should be used from trusted sources, however currently icons are not available on the participants' websites, so for convenience, there is /icons folder. -[Nova Wallet]: https://t.me/novawallet \ No newline at end of file +[Nova Wallet]: https://t.me/novawallet + +### Submitting Contributions + +- Fork the repository and create a new branch for your contribution. +- Initialize repository by: `make init` +- Commit your changes with a descriptive commit message. +- Push your branch to your forked repository. +- Submit a pull request detailing your changes and explaining why they should be merged. + +## License +Nova utils is available under the Apache 2.0 license. See the LICENSE file for more info. +ยฉ Novasama Technologies GmbH 2023 diff --git a/assets/evm/v1/assets.json b/assets/evm/v1/assets.json new file mode 100644 index 000000000..bf7d95fc0 --- /dev/null +++ b/assets/evm/v1/assets.json @@ -0,0 +1,374 @@ +[ + { + "symbol": "USDT", + "precision": 6, + "name": "Tether USD", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C" + } + ] + }, + { + "symbol": "USDC", + "precision": 6, + "name": "USD Coin", + "priceId": "usd-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x818ec0A7Fe18Ff94269904fCED6AE3DaE6d6dC0b" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D" + } + ] + }, + { + "symbol": "BUSD", + "precision": 18, + "name": "Binance-Peg BUSD Token", + "priceId": "binance-usd", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BUSD.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F" + } + ] + }, + { + "symbol": "MATIC", + "precision": 18, + "name": "Matic", + "priceId": "matic-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x3405A1bd46B85c5C029483FbECf2F3E611026e45" + } + ] + }, + { + "symbol": "DAI", + "precision": 18, + "name": "Dai Stablecoin", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x765277EebeCA2e31912C9946eAe1021199B39C61" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844" + } + ] + }, + { + "symbol": "AVAX", + "precision": 18, + "name": "Avalanche", + "priceId": "avalanche-2", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4792C1EcB969B036eb51330c63bD27899A13D84e" + } + ] + }, + { + "symbol": "WBTC", + "precision": 8, + "name": "Wrapped BTC", + "priceId": "wrapped-bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x922D641a426DcFFaeF11680e5358F34d97d112E1" + } + ] + }, + { + "symbol": "FRAX", + "precision": 18, + "name": "Frax", + "priceId": "frax", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x322E86852e492a7Ee17f28a78c663da38FB33bfb" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x1A93B23281CC1CDE4C4741353F3064709A16197d" + } + ] + }, + { + "symbol": "FTM", + "precision": 18, + "name": "Fantom", + "priceId": "fantom", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FTM.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xC19281F22A075E0F10351cd5D6Ea9f0AC63d4327" + } + ] + }, + { + "symbol": "FXS", + "precision": 18, + "name": "Frax Share", + "priceId": "frax-share", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FXS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x2CC0A9D8047A5011dEfe85328a6f26968C8aaA1C" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98" + } + ] + }, + { + "symbol": "WGLMR", + "precision": 18, + "name": "Wrapped GLMR", + "priceId": "wrapped-moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xAcc15dC74880C9944775448304B263D191c6077F" + } + ] + }, + { + "symbol": "BEPRO", + "precision": 18, + "name": "BEPRO Network", + "priceId": "bepro-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEPRO.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4EdF8E0778967012D46968ceadb75436d0426f88" + } + ] + }, + { + "symbol": "mbXEN", + "precision": 18, + "name": "XEN Crypto", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/mbXEN.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xb564A5767A00Ee9075cAC561c427643286F8F4E1" + } + ] + }, + { + "symbol": "CONV", + "precision": 18, + "name": "Convergence", + "priceId": "convergence", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CONV.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a" + } + ] + }, + { + "symbol": "GLINT", + "precision": 18, + "name": "Beamswap Token", + "priceId": "beamswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLINT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xcd3B51D98478D53F4515A306bE565c6EebeF1D58" + } + ] + }, + { + "symbol": "EFT", + "precision": 18, + "name": "Energyfi Token", + "priceId": "energyfi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EFT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA423E7eEB60547d9C7b65005477b63ae7CE67E62" + } + ] + }, + { + "symbol": "IDIA", + "precision": 18, + "name": "Impossible Decentralized Incubator Access Token", + "priceId": "idia", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/IDIA.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x2d28AA28fA1E5e6bF121CF688309Bf3faAAe3C70" + } + ] + }, + { + "symbol": "WMOVR", + "precision": 18, + "name": "Wrapped MOVR", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x98878B06940aE243284CA214f92Bb71a2b032B8A" + } + ] + }, + { + "symbol": "CWS", + "precision": 18, + "name": "Crowns", + "priceId": "crowns", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CWS.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6fc9651f45B262AE6338a701D563Ab118B1eC0Ce" + } + ] + }, + { + "symbol": "ZLK", + "precision": 18, + "name": "Zenlink Network Token", + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x0f47ba9d9Bde3442b42175e51d6A367928A1173B" + } + ] + }, + { + "symbol": "SOLAR", + "precision": 18, + "name": "SolarBeam Token", + "priceId": "solarbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/SOLAR.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6bD193Ee6D2104F14F94E2cA6efefae561A4334B" + } + ] + }, + { + "symbol": "RIB", + "precision": 18, + "name": "RiverBoat", + "priceId": "riverboat", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RIB.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xbD90A6125a84E5C512129D622a75CDDE176aDE5E" + } + ] + }, + { + "symbol": "BEANS", + "precision": 18, + "name": "MoonBeans", + "priceId": "moonbeans", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEANS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x65b09ef8c5A096C5Fd3A80f1F7369E56eB932412" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xC2392DD3e3fED2c8Ed9f7f0bDf6026fcd1348453" + } + ] + }, + { + "symbol": "STELLA", + "precision": 18, + "name": "StellaSwap", + "priceId": "stellaswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STELLA.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x0E358838ce72d5e61E0018a2ffaC4bEC5F4c88d2" + } + ] + }, + { + "symbol": "BNB", + "precision": 18, + "name": "Binance", + "priceId": "binancecoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xc9BAA8cfdDe8E328787E29b4B078abf2DaDc2055" + } + ] + }, + { + "symbol": "ETH", + "precision": 18, + "name": "Ethereum", + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xfA9343C3897324496A05fC75abeD6bAC29f8A40f" + } + ] + }, + { + "symbol": "CP", + "precision": 18, + "name": "Cypress", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CP.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x6021D2C27B6FBd6e7608D1F39B41398CAee2F824" + } + ] + } +] diff --git a/assets/evm/v1/assets_dev.json b/assets/evm/v1/assets_dev.json new file mode 100644 index 000000000..26ef3ec92 --- /dev/null +++ b/assets/evm/v1/assets_dev.json @@ -0,0 +1,413 @@ +[ + { + "symbol": "USDT", + "precision": 6, + "name": "Tether USD", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C" + } + ] + }, + { + "symbol": "USDC", + "precision": 6, + "name": "USD Coin", + "priceId": "usd-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x818ec0A7Fe18Ff94269904fCED6AE3DaE6d6dC0b" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D" + } + ] + }, + { + "symbol": "BUSD", + "precision": 18, + "name": "Binance-Peg BUSD Token", + "priceId": "binance-usd", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BUSD.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F" + } + ] + }, + { + "symbol": "MATIC", + "precision": 18, + "name": "Matic", + "priceId": "matic-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x3405A1bd46B85c5C029483FbECf2F3E611026e45" + } + ] + }, + { + "symbol": "DAI", + "precision": 18, + "name": "Dai Stablecoin", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x765277EebeCA2e31912C9946eAe1021199B39C61" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844" + } + ] + }, + { + "symbol": "AVAX", + "precision": 18, + "name": "Avalanche", + "priceId": "avalanche-2", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4792C1EcB969B036eb51330c63bD27899A13D84e" + } + ] + }, + { + "symbol": "WBTC", + "precision": 8, + "name": "Wrapped BTC", + "priceId": "wrapped-bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x922D641a426DcFFaeF11680e5358F34d97d112E1" + } + ] + }, + { + "symbol": "FRAX", + "precision": 18, + "name": "Frax", + "priceId": "frax", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x322E86852e492a7Ee17f28a78c663da38FB33bfb" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x1A93B23281CC1CDE4C4741353F3064709A16197d" + } + ] + }, + { + "symbol": "FTM", + "precision": 18, + "name": "Fantom", + "priceId": "fantom", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FTM.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xC19281F22A075E0F10351cd5D6Ea9f0AC63d4327" + } + ] + }, + { + "symbol": "FXS", + "precision": 18, + "name": "Frax Share", + "priceId": "frax-share", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FXS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x2CC0A9D8047A5011dEfe85328a6f26968C8aaA1C" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98" + } + ] + }, + { + "symbol": "WGLMR", + "precision": 18, + "name": "Wrapped GLMR", + "priceId": "wrapped-moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xAcc15dC74880C9944775448304B263D191c6077F" + } + ] + }, + { + "symbol": "BOBA", + "precision": 18, + "name": "BOBA Token", + "priceId": "boba-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BOBA.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x18D17A9fD652D7d6a59903E23792ab97F832Ed6C" + } + ] + }, + { + "symbol": "BEPRO", + "precision": 18, + "name": "BEPRO Network", + "priceId": "bepro-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEPRO.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4EdF8E0778967012D46968ceadb75436d0426f88" + } + ] + }, + { + "symbol": "mbXEN", + "precision": 18, + "name": "XEN Crypto", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/mbXEN.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xb564A5767A00Ee9075cAC561c427643286F8F4E1" + } + ] + }, + { + "symbol": "CONV", + "precision": 18, + "name": "Convergence", + "priceId": "convergence", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CONV.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a" + } + ] + }, + { + "symbol": "GLINT", + "precision": 18, + "name": "Beamswap Token", + "priceId": "beamswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLINT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xcd3B51D98478D53F4515A306bE565c6EebeF1D58" + } + ] + }, + { + "symbol": "EFT", + "precision": 18, + "name": "Energyfi Token", + "priceId": "energyfi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EFT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA423E7eEB60547d9C7b65005477b63ae7CE67E62" + } + ] + }, + { + "symbol": "IDIA", + "precision": 18, + "name": "Impossible Decentralized Incubator Access Token", + "priceId": "idia", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/IDIA.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x2d28AA28fA1E5e6bF121CF688309Bf3faAAe3C70" + } + ] + }, + { + "symbol": "WMOVR", + "precision": 18, + "name": "Wrapped MOVR", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x98878B06940aE243284CA214f92Bb71a2b032B8A" + } + ] + }, + { + "symbol": "CWS", + "precision": 18, + "name": "Crowns", + "priceId": "crowns", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CWS.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6fc9651f45B262AE6338a701D563Ab118B1eC0Ce" + } + ] + }, + { + "symbol": "ZLK", + "precision": 18, + "name": "Zenlink Network Token", + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x0f47ba9d9Bde3442b42175e51d6A367928A1173B" + } + ] + }, + { + "symbol": "SOLAR", + "precision": 18, + "name": "SolarBeam Token", + "priceId": "solarbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/SOLAR.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6bD193Ee6D2104F14F94E2cA6efefae561A4334B" + } + ] + }, + { + "symbol": "HYDRO", + "precision": 18, + "name": "HYDRO TOKEN", + "priceId": "hydro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HYDRO.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x946112efaB61C3636CBD52DE2E1392D7A75A6f01" + } + ] + }, + { + "symbol": "RIB", + "precision": 18, + "name": "RiverBoat", + "priceId": "riverboat", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RIB.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xbD90A6125a84E5C512129D622a75CDDE176aDE5E" + } + ] + }, + { + "symbol": "BEANS", + "precision": 18, + "name": "MoonBeans", + "priceId": "moonbeans", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEANS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x65b09ef8c5A096C5Fd3A80f1F7369E56eB932412" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xC2392DD3e3fED2c8Ed9f7f0bDf6026fcd1348453" + } + ] + }, + { + "symbol": "SPACE", + "precision": 18, + "name": "Space Token", + "priceId": "space-token-bsc", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/SPACE.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x55aF5865807b196bD0197e0902746F31FBcCFa58" + } + ] + }, + { + "symbol": "STELLA", + "precision": 18, + "name": "StellaSwap", + "priceId": "stellaswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STELLA.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x0E358838ce72d5e61E0018a2ffaC4bEC5F4c88d2" + } + ] + }, + { + "symbol": "BNB", + "precision": 18, + "name": "Binance", + "priceId": "binancecoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xc9BAA8cfdDe8E328787E29b4B078abf2DaDc2055" + } + ] + }, + { + "symbol": "ETH", + "precision": 18, + "name": "Ethereum", + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xfA9343C3897324496A05fC75abeD6bAC29f8A40f" + } + ] + }, + { + "symbol": "CP", + "precision": 18, + "name": "Cypress", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CP.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x6021D2C27B6FBd6e7608D1F39B41398CAee2F824" + } + ] + } +] diff --git a/assets/evm/v2/assets.json b/assets/evm/v2/assets.json new file mode 100644 index 000000000..b5071e310 --- /dev/null +++ b/assets/evm/v2/assets.json @@ -0,0 +1,586 @@ +[ + { + "symbol": "USDT", + "precision": 6, + "name": "Tether USD", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C" + }, + { + "chainId": "eip155:1", + "contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "USDT", + "blockchain": "ETH" + } + } + } + ] + }, + { + "symbol": "USDC", + "precision": 6, + "name": "USD Coin", + "priceId": "usd-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x818ec0A7Fe18Ff94269904fCED6AE3DaE6d6dC0b" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D" + }, + { + "chainId": "eip155:1", + "contractAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "USDC", + "blockchain": "ETH" + } + } + } + ] + }, + { + "symbol": "BUSD", + "precision": 18, + "name": "Binance-Peg BUSD Token", + "priceId": "binance-usd", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BUSD.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x4fabb145d64652a948d72533023f6e7a623c7c53" + } + ] + }, + { + "symbol": "MATIC", + "precision": 18, + "name": "Matic", + "priceId": "matic-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x3405A1bd46B85c5C029483FbECf2F3E611026e45" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0" + } + ] + }, + { + "symbol": "DAI", + "precision": 18, + "name": "Dai Stablecoin", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x765277EebeCA2e31912C9946eAe1021199B39C61" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x6b175474e89094c44da98b954eedeac495271d0f" + } + ] + }, + { + "symbol": "AVAX", + "precision": 18, + "name": "Avalanche", + "priceId": "avalanche-2", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4792C1EcB969B036eb51330c63bD27899A13D84e" + } + ] + }, + { + "symbol": "WBTC", + "precision": 8, + "name": "Wrapped BTC", + "priceId": "wrapped-bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x922D641a426DcFFaeF11680e5358F34d97d112E1" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + } + ] + }, + { + "symbol": "FRAX", + "precision": 18, + "name": "Frax", + "priceId": "frax", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x322E86852e492a7Ee17f28a78c663da38FB33bfb" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x1A93B23281CC1CDE4C4741353F3064709A16197d" + } + ] + }, + { + "symbol": "FTM", + "precision": 18, + "name": "Fantom", + "priceId": "fantom", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FTM.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xC19281F22A075E0F10351cd5D6Ea9f0AC63d4327" + } + ] + }, + { + "symbol": "FXS", + "precision": 18, + "name": "Frax Share", + "priceId": "frax-share", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FXS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x2CC0A9D8047A5011dEfe85328a6f26968C8aaA1C" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98" + } + ] + }, + { + "symbol": "WGLMR", + "precision": 18, + "name": "Wrapped GLMR", + "priceId": "wrapped-moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xAcc15dC74880C9944775448304B263D191c6077F" + } + ] + }, + { + "symbol": "BEPRO", + "precision": 18, + "name": "BEPRO Network", + "priceId": "bepro-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEPRO.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4EdF8E0778967012D46968ceadb75436d0426f88" + } + ] + }, + { + "symbol": "mbXEN", + "precision": 18, + "name": "XEN Crypto", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/mbXEN.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xb564A5767A00Ee9075cAC561c427643286F8F4E1" + } + ] + }, + { + "symbol": "CONV", + "precision": 18, + "name": "Convergence", + "priceId": "convergence", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CONV.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a" + } + ] + }, + { + "symbol": "GLINT", + "precision": 18, + "name": "Beamswap Token", + "priceId": "beamswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLINT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xcd3B51D98478D53F4515A306bE565c6EebeF1D58" + } + ] + }, + { + "symbol": "EFT", + "precision": 18, + "name": "Energyfi Token", + "priceId": "energyfi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EFT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA423E7eEB60547d9C7b65005477b63ae7CE67E62" + } + ] + }, + { + "symbol": "IDIA", + "precision": 18, + "name": "Impossible Decentralized Incubator Access Token", + "priceId": "idia", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/IDIA.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x2d28AA28fA1E5e6bF121CF688309Bf3faAAe3C70" + } + ] + }, + { + "symbol": "WMOVR", + "precision": 18, + "name": "Wrapped MOVR", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x98878B06940aE243284CA214f92Bb71a2b032B8A" + } + ] + }, + { + "symbol": "CWS", + "precision": 18, + "name": "Crowns", + "priceId": "crowns", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CWS.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6fc9651f45B262AE6338a701D563Ab118B1eC0Ce" + } + ] + }, + { + "symbol": "ZLK", + "precision": 18, + "name": "Zenlink Network Token", + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x0f47ba9d9Bde3442b42175e51d6A367928A1173B" + } + ] + }, + { + "symbol": "SOLAR", + "precision": 18, + "name": "SolarBeam Token", + "priceId": "solarbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/SOLAR.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6bD193Ee6D2104F14F94E2cA6efefae561A4334B" + } + ] + }, + { + "symbol": "RIB", + "precision": 18, + "name": "RiverBoat", + "priceId": "riverboat", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RIB.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xbD90A6125a84E5C512129D622a75CDDE176aDE5E" + } + ] + }, + { + "symbol": "BEANS", + "precision": 18, + "name": "MoonBeans", + "priceId": "moonbeans", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEANS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x65b09ef8c5A096C5Fd3A80f1F7369E56eB932412" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xC2392DD3e3fED2c8Ed9f7f0bDf6026fcd1348453" + } + ] + }, + { + "symbol": "STELLA", + "precision": 18, + "name": "StellaSwap", + "priceId": "stellaswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STELLA.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x0E358838ce72d5e61E0018a2ffaC4bEC5F4c88d2" + } + ] + }, + { + "symbol": "BNB", + "precision": 18, + "name": "Binance", + "priceId": "binancecoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xc9BAA8cfdDe8E328787E29b4B078abf2DaDc2055" + }, + { + "chainId": "eip155:1", + "contractAddress": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52" + } + ] + }, + { + "symbol": "ETH", + "precision": 18, + "name": "Ethereum", + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xfA9343C3897324496A05fC75abeD6bAC29f8A40f" + } + ] + }, + { + "symbol": "CP", + "precision": 18, + "name": "Cypress", + "priceId": "cypress", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CP.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x6021D2C27B6FBd6e7608D1F39B41398CAee2F824" + } + ] + }, + { + "symbol": "HEX", + "precision": 8, + "name": "Hex", + "priceId": "hex", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HEX.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39" + } + ] + }, + { + "symbol": "stETH", + "precision": 18, + "name": "Lido Staked Ether", + "priceId": "staked-ether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/stETH.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84" + } + ] + }, + { + "symbol": "UNI", + "precision": 18, + "name": "Uniswap", + "priceId": "uniswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/UNI.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984" + } + ] + }, + { + "symbol": "WELL", + "precision": 18, + "name": "Moonwell", + "priceId": "moonwell-artemis", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WELL.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x511aB53F793683763E5a8829738301368a2411E3" + } + ] + }, + { + "symbol": "MFAM", + "precision": 18, + "name": "Moonwell Apollo", + "priceId": "moonwell", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MFAM.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xBb8d88bcD9749636BC4D2bE22aaC4Bb3B01A58F1" + } + ] + }, + { + "symbol": "xcRMRK (old)", + "precision": 10, + "name": "xcRMRK", + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xECf2ADafF1De8A512f6e8bfe67a2C836EDb25Da3" + } + ] + }, + { + "symbol": "stDOT", + "precision": 10, + "name": "StellaSwap Staked DOT", + "priceId": "stellaswap-staked-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/stDOT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xbc7E02c4178a7dF7d3E564323a5c359dc96C4db4" + } + ] + }, + { + "symbol": "MANTA", + "precision": 18, + "name": "MANTA", + "priceId": "manta-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "instances": [ + { + "chainId": "eip155:169", + "contractAddress": "0x95CeF13441Be50d20cA4558CC0a27B601aC544E5" + } + ] + }, + { + "symbol": "RMRK", + "precision": 18, + "name": "RMRK", + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x524d524B4c9366be706D3A90dcf70076ca037aE3" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x524d524B4c9366be706D3A90dcf70076ca037aE3" + } + ] + }, + { + "symbol": "xcPINK", + "precision": 10, + "name": "PINK", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xfFfFFfFf30478fAFBE935e466da114E14fB3563d" + } + ] + }, + { + "symbol": "SAMA", + "precision": 18, + "name": "SAMA", + "priceId": "exosama-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0xE04F47FF45576249bc5083DFDf987e03d0550113" + } + ] + }, + { + "symbol": "MYTH", + "precision": 18, + "name": "MYTH", + "priceId": "mythos", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYTH.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003" + } + ] + } +] diff --git a/assets/evm/v2/assets_dev.json b/assets/evm/v2/assets_dev.json new file mode 100644 index 000000000..15f965539 --- /dev/null +++ b/assets/evm/v2/assets_dev.json @@ -0,0 +1,679 @@ +[ + { + "symbol": "USDT", + "precision": 6, + "name": "Tether USD", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C" + }, + { + "chainId": "eip155:1", + "contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "USDT", + "blockchain": "ETH" + } + } + } + ] + }, + { + "symbol": "USDC", + "precision": 6, + "name": "USD Coin", + "priceId": "usd-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x818ec0A7Fe18Ff94269904fCED6AE3DaE6d6dC0b" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D" + }, + { + "chainId": "eip155:1", + "contractAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "USDC", + "blockchain": "ETH" + } + } + } + ] + }, + { + "symbol": "BUSD", + "precision": 18, + "name": "Binance-Peg BUSD Token", + "priceId": "binance-usd", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BUSD.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x4fabb145d64652a948d72533023f6e7a623c7c53" + }, + { + "chainId": "eip155:56", + "contractAddress": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" + } + ] + }, + { + "symbol": "MATIC", + "precision": 18, + "name": "Matic", + "priceId": "matic-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x3405A1bd46B85c5C029483FbECf2F3E611026e45" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0" + }, + { + "chainId": "eip155:56", + "contractAddress": "0xCC42724C6683B7E57334c4E856f4c9965ED682bD" + } + ] + }, + { + "symbol": "DAI", + "precision": 18, + "name": "Dai Stablecoin", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x765277EebeCA2e31912C9946eAe1021199B39C61" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x80A16016cC4A2E6a2CACA8a4a498b1699fF0f844" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x6b175474e89094c44da98b954eedeac495271d0f" + }, + { + "chainId": "eip155:56", + "contractAddress": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3" + } + ] + }, + { + "symbol": "AVAX", + "precision": 18, + "name": "Avalanche", + "priceId": "avalanche-2", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4792C1EcB969B036eb51330c63bD27899A13D84e" + }, + { + "chainId": "eip155:56", + "contractAddress": "0x1CE0c2827e2eF14D5C4f29a091d735A204794041" + } + ] + }, + { + "symbol": "WBTC", + "precision": 8, + "name": "Wrapped BTC", + "priceId": "wrapped-bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x922D641a426DcFFaeF11680e5358F34d97d112E1" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + } + ] + }, + { + "symbol": "FRAX", + "precision": 18, + "name": "Frax", + "priceId": "frax", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRAX.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x322E86852e492a7Ee17f28a78c663da38FB33bfb" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x1A93B23281CC1CDE4C4741353F3064709A16197d" + }, + { + "chainId": "eip155:56", + "contractAddress": "0x90C97F71E18723b0Cf0dfa30ee176Ab653E89F40" + } + ] + }, + { + "symbol": "FTM", + "precision": 18, + "name": "Fantom", + "priceId": "fantom", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FTM.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xC19281F22A075E0F10351cd5D6Ea9f0AC63d4327" + } + ] + }, + { + "symbol": "FXS", + "precision": 18, + "name": "Frax Share", + "priceId": "frax-share", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FXS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x2CC0A9D8047A5011dEfe85328a6f26968C8aaA1C" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6f1D1Ee50846Fcbc3de91723E61cb68CFa6D0E98" + } + ] + }, + { + "symbol": "WGLMR", + "precision": 18, + "name": "Wrapped GLMR", + "priceId": "wrapped-moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xAcc15dC74880C9944775448304B263D191c6077F" + } + ] + }, + { + "symbol": "BOBA", + "precision": 18, + "name": "BOBA Token", + "priceId": "boba-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BOBA.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x18D17A9fD652D7d6a59903E23792ab97F832Ed6C" + } + ] + }, + { + "symbol": "BEPRO", + "precision": 18, + "name": "BEPRO Network", + "priceId": "bepro-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEPRO.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x4EdF8E0778967012D46968ceadb75436d0426f88" + } + ] + }, + { + "symbol": "mbXEN", + "precision": 18, + "name": "XEN Crypto", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/mbXEN.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xb564A5767A00Ee9075cAC561c427643286F8F4E1" + } + ] + }, + { + "symbol": "CONV", + "precision": 18, + "name": "Convergence", + "priceId": "convergence", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CONV.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a" + } + ] + }, + { + "symbol": "GLINT", + "precision": 18, + "name": "Beamswap Token", + "priceId": "beamswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GLINT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xcd3B51D98478D53F4515A306bE565c6EebeF1D58" + } + ] + }, + { + "symbol": "EFT", + "precision": 18, + "name": "Energyfi Token", + "priceId": "energyfi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EFT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xA423E7eEB60547d9C7b65005477b63ae7CE67E62" + } + ] + }, + { + "symbol": "IDIA", + "precision": 18, + "name": "Impossible Decentralized Incubator Access Token", + "priceId": "idia", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/IDIA.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x2d28AA28fA1E5e6bF121CF688309Bf3faAAe3C70" + } + ] + }, + { + "symbol": "WMOVR", + "precision": 18, + "name": "Wrapped MOVR", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x98878B06940aE243284CA214f92Bb71a2b032B8A" + } + ] + }, + { + "symbol": "CWS", + "precision": 18, + "name": "Crowns", + "priceId": "crowns", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CWS.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6fc9651f45B262AE6338a701D563Ab118B1eC0Ce" + } + ] + }, + { + "symbol": "ZLK", + "precision": 18, + "name": "Zenlink Network Token", + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x0f47ba9d9Bde3442b42175e51d6A367928A1173B" + } + ] + }, + { + "symbol": "SOLAR", + "precision": 18, + "name": "SolarBeam Token", + "priceId": "solarbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/SOLAR.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x6bD193Ee6D2104F14F94E2cA6efefae561A4334B" + } + ] + }, + { + "symbol": "HYDRO", + "precision": 18, + "name": "HYDRO TOKEN", + "priceId": "hydro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HYDRO.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x946112efaB61C3636CBD52DE2E1392D7A75A6f01" + } + ] + }, + { + "symbol": "RIB", + "precision": 18, + "name": "RiverBoat", + "priceId": "riverboat", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RIB.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xbD90A6125a84E5C512129D622a75CDDE176aDE5E" + } + ] + }, + { + "symbol": "BEANS", + "precision": 18, + "name": "MoonBeans", + "priceId": "moonbeans", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BEANS.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x65b09ef8c5A096C5Fd3A80f1F7369E56eB932412" + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xC2392DD3e3fED2c8Ed9f7f0bDf6026fcd1348453" + } + ] + }, + { + "symbol": "SPACE", + "precision": 18, + "name": "Space Token", + "priceId": "space-token-bsc", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/SPACE.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0x55aF5865807b196bD0197e0902746F31FBcCFa58" + } + ] + }, + { + "symbol": "STELLA", + "precision": 18, + "name": "StellaSwap", + "priceId": "stellaswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STELLA.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x0E358838ce72d5e61E0018a2ffaC4bEC5F4c88d2" + } + ] + }, + { + "symbol": "BNB", + "precision": 18, + "name": "Binance", + "priceId": "binancecoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xc9BAA8cfdDe8E328787E29b4B078abf2DaDc2055" + }, + { + "chainId": "eip155:1", + "contractAddress": "0xB8c77482e45F1F44dE1745F52C74426C631bDD52" + } + ] + }, + { + "symbol": "ETH", + "precision": 18, + "name": "Ethereum", + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xfA9343C3897324496A05fC75abeD6bAC29f8A40f" + }, + { + "chainId": "eip155:56", + "contractAddress": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8" + } + ] + }, + { + "symbol": "CP", + "precision": 18, + "name": "Cypress", + "priceId": "cypress", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CP.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x6021D2C27B6FBd6e7608D1F39B41398CAee2F824" + } + ] + }, + { + "symbol": "HEX", + "precision": 8, + "name": "Hex", + "priceId": "hex", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HEX.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39" + } + ] + }, + { + "symbol": "stETH", + "precision": 18, + "name": "Lido Staked Ether", + "priceId": "staked-ether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/stETH.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84" + } + ] + }, + { + "symbol": "UNI", + "precision": 18, + "name": "Uniswap", + "priceId": "uniswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/UNI.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984" + }, + { + "chainId": "eip155:56", + "contractAddress": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1" + } + ] + }, + { + "symbol": "USDT", + "precision": 18, + "name": "Tether USD", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "instances": [ + { + "chainId": "eip155:56", + "contractAddress": "0x55d398326f99059fF775485246999027B3197955" + } + ] + }, + { + "symbol": "USDC", + "precision": 18, + "name": "USD Coin", + "priceId": "usd-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "instances": [ + { + "chainId": "eip155:56", + "contractAddress": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d" + } + ] + }, + { + "symbol": "WELL", + "precision": 18, + "name": "Moonwell", + "priceId": "moonwell-artemis", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WELL.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x511aB53F793683763E5a8829738301368a2411E3" + } + ] + }, + { + "symbol": "MFAM", + "precision": 18, + "name": "Moonwell Apollo", + "priceId": "moonwell", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MFAM.svg", + "instances": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "contractAddress": "0xBb8d88bcD9749636BC4D2bE22aaC4Bb3B01A58F1" + } + ] + }, + { + "symbol": "xcRMRK (old)", + "precision": 10, + "name": "xcRMRK", + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xECf2ADafF1De8A512f6e8bfe67a2C836EDb25Da3" + } + ] + }, + { + "symbol": "stDOT", + "precision": 10, + "name": "StellaSwap Staked DOT", + "priceId": "stellaswap-staked-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/stDOT.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xbc7E02c4178a7dF7d3E564323a5c359dc96C4db4" + } + ] + }, + { + "symbol": "MANTA", + "precision": 18, + "name": "MANTA", + "priceId": "manta-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "instances": [ + { + "chainId": "eip155:169", + "contractAddress": "0x95CeF13441Be50d20cA4558CC0a27B601aC544E5" + } + ] + }, + { + "symbol": "RMRK", + "precision": 18, + "name": "RMRK", + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0x524d524B4c9366be706D3A90dcf70076ca037aE3" + }, + { + "chainId": "eip155:1", + "contractAddress": "0x524d524B4c9366be706D3A90dcf70076ca037aE3" + } + ] + }, + { + "symbol": "xcPINK", + "precision": 10, + "name": "PINK", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "instances": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "contractAddress": "0xfFfFFfFf30478fAFBE935e466da114E14fB3563d" + } + ] + }, + { + "symbol": "SAMA", + "precision": 18, + "name": "SAMA", + "priceId": "exosama-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0xE04F47FF45576249bc5083DFDf987e03d0550113" + } + ] + }, + { + "symbol": "MYTH", + "precision": 18, + "name": "MYTH", + "priceId": "mythos", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYTH.svg", + "instances": [ + { + "chainId": "eip155:1", + "contractAddress": "0xBA41Ddf06B7fFD89D1267b5A93BFeF2424eb2003" + } + ] + } +] diff --git a/assets/slip44.json b/assets/slip44.json new file mode 100644 index 000000000..3594e5ab1 --- /dev/null +++ b/assets/slip44.json @@ -0,0 +1,126 @@ +[ + { + "index": "60", + "symbol": "ETH" + }, + { + "index": "188", + "symbol": "WBTC" + }, + { + "index": "354", + "symbol": "DOT" + }, + { + "index": "434", + "symbol": "KSM" + }, + { + "index": "523", + "symbol": "EDG" + }, + { + "index": "558", + "symbol": "TAO" + }, + { + "index": "595", + "symbol": "POLYX" + }, + { + "index": "631", + "symbol": "QTZ" + }, + { + "index": "643", + "symbol": "AZERO" + }, + { + "index": "686", + "symbol": "KAR" + }, + { + "index": "714", + "symbol": "BNB" + }, + { + "index": "747", + "symbol": "CFG" + }, + { + "index": "787", + "symbol": "ACA" + }, + { + "index": "788", + "symbol": "BNC" + }, + { + "index": "799", + "symbol": "PDEX" + }, + { + "index": "809", + "symbol": "SDN" + }, + { + "index": "810", + "symbol": "ASTR" + }, + { + "index": "966", + "symbol": "MATIC" + }, + { + "index": "995", + "symbol": "CAPS" + }, + { + "index": "1003", + "symbol": "NODL" + }, + { + "index": "1005", + "symbol": "TAO" + }, + { + "index": "1007", + "symbol": "FTM" + }, + { + "index": "1155", + "symbol": "EFI" + }, + { + "index": "1284", + "symbol": "GLMR" + }, + { + "index": "1285", + "symbol": "MOVR" + }, + { + "index": "1955", + "symbol": "XX" + }, + { + "index": "2086", + "symbol": "KILT" + }, + { + "index": "9000", + "symbol": "AVAX" + }, + { + "index": "9002", + "symbol": "BOBA" + }, + { + "index": "99999996", + "symbol": "GENS" + }, + { + "index": "99999997", + "symbol": "EQ" + } +] diff --git a/chains/README.md b/chains/README.md index 70b8a5fcd..94410cc82 100644 --- a/chains/README.md +++ b/chains/README.md @@ -1,60 +1,104 @@ +# Supported Networks & Assets data: +### ๐Ÿ•ธ๏ธ Supported networks: 92 +### ๐Ÿ’ฐ All assets 390 +### ๐Ÿช™ Unique assets: 195 +### ๐Ÿ’ซ Cross Chain directions: 416 +### ๐Ÿงพ SubQuery API projects: 79 +### ๐Ÿ‘€ Networks with block explorers: 71 +--- # List of supported networks -| Network | Assets | Explorers | SubQuery explorer | -| --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| Acala | ACA
LDOT
aUSD
DOT
lcDOT
GLMR
PARA
TAP
tDOT | Subscan
Sub.ID | [nova-wallet-acala](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-acala) | -| Aleph Zero | AZERO | Subscan | [nova-wallet-aleph-zero](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-aleph-zero) | -| Altair | AIR | Subscan
Sub.ID | [nova-wallet-altair](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-altair) | -| Astar | ASTR
DOT | Subscan
Sub.ID | [nova-wallet-astar](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-astar) | -| Bajun | BAJU | - | - | -| Basilisk | BSX | Sub.ID | [nova-wallet-basilisk](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-basilisk) | -| Bifrost | BNC
KSM
RMRK
ZLK
KAR
aUSD
vsKSM
USDT
MOVR
PHA
vKSM | Subscan
Sub.ID | [nova-wallet-bifrost](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bifrost) | -| Bifrost Polkadot | BNC | - | [nova-wallet-bifrost-polkadot](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bifrost-polkadot) | -| Bit.Country Pioneer | NEER | - | [nova-wallet-bit-country](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bit-country) | -| CLV Parachain | CLV | Subscan | [nova-wallet-clover](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-clover) | -| Calamari | KMA | Subscan
Sub.ID | [nova-wallet-calamari](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-calamari) | -| Centrifuge Parachain | CFG | Subscan
Sub.ID | [nova-wallet-centrifuge](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-centrifuge) | -| Composable Finance | LAYR | Subscan | [nova-wallet-composable](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-composable) | -| Crab | CRAB | Subscan
Sub.ID | [nova-wallet-crab](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-crab) | -| Crust Shadow | CSM | Subscan | [nova-wallet-shadow](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-shadow) | -| Dora Factory | DORA | - | [nova-wallet-dora](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-dora) | -| Edgeware | EDG | Subscan
Sub.ID | - | -| Efinity | EFI | - | [nova-wallet-efinity](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-efinity) | -| Encointer | KSM | - | [nova-wallet-encointer](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-encointer) | -| HydraDX | HDX | - | [nova-wallet-hydra](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-hydra) | -| Imbue | IMBU | - | - | -| Integritee Parachain | TEER | Subscan
Sub.ID | [nova-wallet-integritee](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-integritee) | -| Interlay | INTR
iBTC
DOT
KINT
kBTC
KSM | Subscan | [nova-wallet-interlay](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-interlay) | -| KICO | KICO | - | [nova-wallet-kico](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kico) | -| KILT Spiritnet | KILT | Subscan
Sub.ID | [nova-wallet-kilt](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kilt) | -| Kabocha | KAB | - | [nova-wallet-kabocha](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kabocha) | -| Karura | KAR
aUSD
KSM
RMRK
BNC
LKSM
PHA
KINT
kBTC
TAI
vsKSM
taiKSM
QTZ
ARIS
MOVR
HKO
CSM
USDT
KMA
TEER
KICO
NEER
BSX
AIR
GENS
EQD
CRAB | Subscan
Sub.ID | [nova-wallet-karura](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-karura) | -| Khala | PHA
KSM
KAR
BNC
ZLK
aUSD
BSX
MOVR
HKO | Subscan
Sub.ID | [nova-wallet-khala](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-khala) | -| Kintsugi | KINT
kBTC
KSM | Subscan
Sub.ID | [nova-wallet-kintsugi](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kintsugi) | -| Kusama | KSM | Subscan
Polkascan
Sub.ID | [nova-kusama](https://explorer.subquery.network/subquery/nova-wallet/nova-kusama) | -| Litentry | LIT | - | [nova-wallet-litentry](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-litentry) | -| Litmus | LIT | Subscan
Sub.ID | [nova-wallet-litmus](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-litmus) | -| Mangata X | MGX
KSM
ETH | Subscan | - | -| Moonbeam | GLMR
xcDOT
xcaUSD
xcACA | Subscan | [nova-wallet-moonbeam](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-moonbeam) | -| Moonriver | MOVR
xcRMRK
xcKSM
xcKINT
xcKAR
xcBNC
xckBTC
xcUSDT
xcaUSD
xcCSM
xcPHA
xcHKO
xcKMA
xcCRAB
xcTEER | Subscan | [nova-wallet-moonriver](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-moonriver) | -| Nodle Parachain | NODL | Subscan
Sub.ID | [nova-wallet-nodle](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-nodle) | -| OriginTrail Parachain | OTP | - | [nova-wallet-origin-trail](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-origin-trail) | -| Parallel | PARA
DOT
sDOT
ACA
aUSD
LDOT | Subscan
Sub.ID | [nova-wallet-parallel](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-parallel) | -| Parallel Heiko | HKO
KSM
aUSD
LKSM
sKSM
KAR
MOVR
PHA
GENS | Subscan | [nova-wallet-parallel-heiko](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-parallel-heiko) | -| Phala | PHA | Subscan | [nova-wallet-phala](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-phala) | -| Picasso | PICA | Subscan | [nova-wallet-picasso](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-picasso) | -| Pichiu | PCHU | - | [nova-wallet-pichiu](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-pichiu) | -| Polkadex Solochain | PDEX | Subscan
Sub.ID | [nova-wallet-polkadex](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-polkadex) | -| Polkadot | DOT | Subscan
Polkascan
Sub.ID | [nova-polkadot](https://explorer.subquery.network/subquery/nova-wallet/nova-polkadot) | -| QUARTZ | QTZ | Subscan
Sub.ID | [nova-wallet-quartz](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-quartz) | -| Robonomics | XRT | Subscan
Sub.ID | [nova-wallet-robonomics](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-robonomics) | -| Shiden | SDN | Subscan
Sub.ID | [nova-wallet-shiden](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-shiden) | -| Statemine | KSM
RMRK
CHAOS
CHRWNA
SHIBATALES
BILLCOIN
ARIS
USDT | Subscan
Statescan
Sub.ID | [nova-wallet-statemine](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-statemine) | -| Statemint | DOT | Statescan | [nova-wallet-statemint](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-statemint) | -| Subsocial Parachain | SUB | Sub.ID | [nova-wallet-subsocial](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-subsocial) | -| Subsocial Solochain | SUB | Sub.ID | - | -| Tanganika | DHX | - | [nova-wallet-tanganika](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-tanganika) | -| Turing | TUR
KSM
aUSD
KAR
LKSM
HKO
sKSM
PHA | Subscan | [nova-wallet-turing](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-turing) | -| UNIQUE | UNQ | Subscan | [nova-wallet-unique](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-unique) | -| Westend | WND | Subscan | [nova-westend](https://explorer.subquery.network/subquery/nova-wallet/nova-westend) | -| Zeitgeist | ZTG | Subscan
Sub.ID | [nova-wallet-zeitgeist](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-zeitgeist) | +| -- | Network | Assets | Explorers | SubQuery explorer | +| --: | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | +| 1 | 3DPass | P3D | 3DPass explorer | [nova-wallet-3dpass](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-3dpass) | +| 2 | Acala | ACA
LDOT
aSEED
DOT
lcDOT
GLMR
PARA
TAP
tDOT
INTR
ASTR
EQ
iBTC
DAI
USDT
PINK | Subscan
Sub.ID | [nova-wallet-acala](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-acala) | +| 3 | Ajuna | AJUN | - | [nova-wallet---ajuna](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---ajuna) | +| 4 | Aleph Zero | AZERO | Subscan | [nova-wallet-aleph-zero](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-aleph-zero) | +| 5 | Altair | AIR | Subscan
Sub.ID | [nova-wallet-altair](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-altair) | +| 6 | Amplitude | AMPE
KSM
USDT | - | [nova-wallet-amplitude](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-amplitude) | +| 7 | Astar | ASTR
DOT
GLMR
iBTC
INTR
PHA
ACA
LDOT
aSEED
USDT
BNC
UNQ
vDOT
EQD | Subscan
Sub.ID | [nova-wallet-astar](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-astar) | +| 8 | Aventus | AVT | Aventus explorer | [nova-wallet-aventus](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-aventus) | +| 9 | Bajun | BAJU | Subscan | [nova-wallet-bajun](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bajun) | +| 10 | Basilisk | BSX
KSM
aSEED
TNKR
USDT
XRT | Subscan
Sub.ID | [nova-wallet-basilisk](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-basilisk) | +| 11 | Bifrost Kusama | BNC
KSM
RMRK (old)
ZLK
KAR
aSEED
vsKSM
USDT
MOVR
PHA
vKSM
kBTC
vBNC
vMOVR | Subscan
Sub.ID | [nova-wallet-bifrost](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bifrost) | +| 12 | Bifrost Polkadot | BNC
GLMR
DOT
USDT
ASTR
vDOT
vGLMR
vFIL
vASTR
vsDOT
MANTA
vMANTA | Subscan | [nova-wallet-bifrost-polkadot](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bifrost-polkadot) | +| 13 | Bit.Country Pioneer | NEER
BIT | Subscan | [nova-wallet-bit-country](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bit-country) | +| 14 | Bittensor | TAO | SCAN | [nova-wallet-bittensor](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-bittensor) | +| 15 | CLV Parachain | CLV | Subscan | [nova-wallet-clover](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-clover) | +| 16 | Calamari | KMA
KAR
KSM
MOVR
USDT
DAI-Karura
USDC-Karura | Subscan
Sub.ID | [nova-wallet-calamari](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-calamari) | +| 17 | Centrifuge Parachain | CFG | Subscan
Sub.ID | [nova-wallet-centrifuge](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-centrifuge) | +| 18 | Composable Finance | LAYR
DOT
KSM
USDT | Subscan | [nova-wallet-composable](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-composable) | +| 19 | Continuum | NUUM | Subscan | - | +| 20 | Crab | CRAB
CKTON | Subscan | [nova-wallet-darwinia](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-darwinia) | +| 21 | Crust Polkadot Parachain | CRU | Subscan | [nova-wallet-crust](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-crust) | +| 22 | Crust Shadow | CSM | Subscan | [nova-wallet-shadow](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-shadow) | +| 23 | Curio | CGT | - | - | +| 24 | DAO IPCI | MITO | - | [nova-wallet-dao-ipci](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-dao-ipci) | +| 25 | Darwinia | RING
KTON | Subscan | [nova-wallet---darwinia](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---darwinia) | +| 26 | Dock | DOCK | Subscan | - | +| 27 | Dora Factory (PAUSED) | DORA | - | [nova-wallet-dora](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-dora) | +| 28 | Edgeware | EDG | Subscan
Sub.ID | - | +| 29 | Encointer | KSM | Subscan | [nova-wallet-encointer](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-encointer) | +| 30 | Energy Web Chain | EWT | Energy Web Explorer | https://explorer.energyweb.org/api | +| 31 | Energy Web X | EWT | - | - | +| 32 | Enjin Matrix | ENJ | Subscan | [enjin-matrixchain](https://explorer.subquery.network/subquery/nova-wallet/enjin-matrixchain) | +| 33 | Enjin Relay | ENJ | Subscan | - | +| 34 | Equilibrium (PAUSED) | EQ
DOT
EQD | Subscan | [nova-wallet-equilibrium](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-equilibrium) | +| 35 | Ethereum | ETH | Etherscan | https://api.etherscan.io/api | +| 36 | Exosama | SAMA | Exosama explorer | https://explorer.exosama.com/api | +| 37 | Frequency | FRQCY | - | [frequency](https://explorer.subquery.network/subquery/nova-wallet/frequency) | +| 38 | GIANT | GIANT | - | [nova-wallet---giant](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---giant) | +| 39 | GM (PAUSED) | FREN
GM
GN | - | [nova-wallet-gm-network](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-gm-network) | +| 40 | Hashed Network | HASH | - | [nova-wallet-hashed-network](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-hashed-network) | +| 41 | HydraDX | HDX
DOT
DAI-Acala
LRNA
WETH-Acala
WBTC-Acala
iBTC
ZTG
ASTR
USDT
CFG
BNC
DAI-Moonbeam
WBTC-Moonbeam
WETH-Moonbeam
USDC
GLMR
INTR
SUB
vDOT
PHA
USDC-Moonbeam
4-Pool
2-Pool
2-Pool-Stbl
UNQ
NODL
CRU
USDT-Moonbeam
DED
PINK
STINK
DOTA | Subscan | [nova-wallet-hydra](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-hydra) | +| 42 | Imbue | IMBU | - | [nova-wallet-imbue](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-imbue) | +| 43 | Integritee Parachain | TEER | Subscan
Sub.ID | [nova-wallet-integritee](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-integritee) | +| 44 | Interlay | INTR
iBTC
DOT
KINT
kBTC
KSM
LDOT
USDT
LP iBTC-USDT
LP DOT-iBTC
LP INTR-USDT
qiBTC
qUSDT
qDOT | Subscan | [nova-wallet-interlay](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-interlay) | +| 45 | InvArch | VARCH | - | - | +| 46 | Joystream | JOY | Subscan | [nova-wallet---joystream](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---joystream) | +| 47 | Jur (PAUSED) | JUR | - | [nova-wallet---jur](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---jur) | +| 48 | KILT | KILT | Subscan
Sub.ID | [nova-wallet-kilt](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kilt) | +| 49 | Kabocha | KAB | - | [nova-wallet-kabocha](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kabocha) | +| 50 | Kapex (PAUSED) | KPX | - | [nova-wallet-kapex](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kapex) | +| 51 | Karura | KAR
aSEED
KSM
RMRK (old)
BNC
LKSM
PHA
KINT
kBTC
TAI
vsKSM
taiKSM
QTZ
MOVR
HKO
CSM
USDT
KMA
TEER
KICO
NEER
BSX
AIR
GENS
EQD
CRAB | Subscan
Sub.ID | [nova-wallet-karura](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-karura) | +| 52 | Khala | PHA
KSM
KAR
BNC
ZLK
aSEED
BSX
MOVR
HKO
KMA
TUR
CRAB
SDN
NEER
BIT
PICA | Subscan
Sub.ID | [nova-wallet-khala](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-khala) | +| 53 | Kintsugi | KINT
kBTC
KSM
LKSM
USDT
aSEED
LP KSM-kBTC
LP kBTC-USDT
LP KSM-KINT
qkBTC
qKSM
qUSDT | Subscan
Sub.ID | [nova-wallet-kintsugi](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kintsugi) | +| 54 | Kusama | KSM | Subscan
Sub.ID | [nova-wallet-kusama](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-kusama) | +| 55 | Kusama Asset Hub | KSM
RMRK (old)
CHAOS
CHRWNA
SHIBATALES
BILLCOIN
USDT | Subscan
Statescan
Sub.ID | [nova-wallet-statemine](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-statemine) | +| 56 | Kusama Bridge Hub | KSM | - | - | +| 57 | Litentry | LIT | Statescan | [nova-wallet-litentry](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-litentry) | +| 58 | Litmus | LIT | Subscan
Sub.ID | [nova-wallet-litmus](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-litmus) | +| 59 | Mangata X | MGX
KSM
ETH
TUR
BNC
RMRK (old)
ZLK
vsKSM
vKSM | Subscan | - | +| 60 | Manta Atlantic | MANTA
DOT | Subscan | [nova-wallet---manta](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---manta) | +| 61 | Manta Pacific | ETH | Manta Pacific Block Explorer
Manta Socialscan | https://pacific-explorer.manta.network/api | +| 62 | Moonbeam | GLMR
xcDOT
xcaSEED
xcACA
xcPARA
xcINTR
xciBTC
POOP
xcASTR
xcPHA
xcUSDT
xcCFG
xcBNC
xcEQ
xcEQD
xcHDX
xcNODL
xcRING
xcOTP
xcvDOT
xcvFIL
xcvGLMR
xcMANTA
xcUSDC | Subscan
Moonscan | [nova-wallet-moonbeam](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-moonbeam) | +| 63 | Moonriver | MOVR
xcRMRK (old)
xcKSM
xcKINT
xcKAR
xcBNC
xckBTC
xcUSDT
xcaSEED
xcCSM
xcPHA
xcHKO
xcKMA
xcCRAB
xcTEER
xcLIT
xcSDN
xcXRT
xcvKSM
xcvBNC
xcvMOVR
xcMGX
xcTUR | Subscan
Moonscan | [nova-wallet-moonriver](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-moonriver) | +| 64 | Myriad | MYRIA | Explorer | [nova-wallet-myriad](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-myriad) | +| 65 | NeuroWeb | NEURO
TRAC | Subscan | [nova-wallet-origin-trail](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-origin-trail) | +| 66 | Nodle Parachain | NODL | Subscan
Sub.ID | [nova-wallet-nodle](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-nodle) | +| 67 | Parallel | PARA
DOT
sDOT
ACA
aSEED
LDOT
GLMR
cDOT-6/13
cDOT-7/14
cDOT-8/15
cDOT-9/16
cDOT-10/17
INTR
iBTC
USDT
CLV
ASTR
PHA | Subscan
Sub.ID | [nova-wallet-parallel](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-parallel) | +| 68 | Parallel Heiko | HKO
KSM
aSEED
LKSM
sKSM
KAR
MOVR
PHA
GENS
USDT
KINT
kBTC | Subscan | [nova-wallet-parallel-heiko](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-parallel-heiko) | +| 69 | Pendulum | PEN
DOT
USDT | - | [nova-wallet-pendulum](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-pendulum) | +| 70 | Phala | PHA | Subscan | [nova-wallet-phala](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-phala) | +| 71 | Picasso | PICA
DOT
KSM
USDT | Subscan | [nova-wallet-picasso](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-picasso) | +| 72 | Polimec | PLMC | Statescan | [nova-wallet---polymec](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---polymec) | +| 73 | Polkadex | PDEX
DOT
USDT
ASTR
PHA
iBTC
DED
PINK
GLMR | Subscan
Sub.ID | [nova-wallet-polkadex](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-polkadex) | +| 74 | Polkadot | DOT | Subscan
Sub.ID | [nova-wallet-polkadot](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-polkadot) | +| 75 | Polkadot Asset Hub | DOT
USDT
USDC
DED
PINK
DOTA
STINK | Subscan
Statescan | [nova-wallet-statemint](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-statemint) | +| 76 | Polkadot Bridge Hub | DOT | - | [polkadot-bridgehub](https://explorer.subquery.network/subquery/nova-wallet/polkadot-bridgehub) | +| 77 | Polkadot Collectives | DOT | - | - | +| 78 | Polymesh | POLYX | Subscan | - | +| 79 | QUARTZ | QTZ | Subscan
Sub.ID | [nova-wallet-quartz](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-quartz) | +| 80 | Robonomics | XRT | Subscan
Sub.ID | [nova-wallet-robonomics](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-robonomics) | +| 81 | Shiden | SDN
PHA
LKSM
MOVR
kBTC
KINT
KSM
aSEED
CSM
KAR
USDT
vKSM
BNC | Subscan
Sub.ID | [nova-wallet-shiden](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-shiden) | +| 82 | Subsocial | SUB | Sub.ID | [nova-wallet-subsocial](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-subsocial) | +| 83 | Ternoa | CAPS | Ternoa explorer | [nova-wallet-ternoa](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-ternoa) | +| 84 | Tinkernet | TNKR | - | [nova-wallet-tinkernet](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-tinkernet) | +| 85 | Turing | TUR
KSM
aSEED
KAR
LKSM
HKO
sKSM
PHA | Subscan | [nova-wallet-turing](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-turing) | +| 86 | UNIQUE | UNQ | Subscan | [nova-wallet-unique](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-unique) | +| 87 | Vara | VARA | Varascan | [nova-wallet---vara](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet---vara) | +| 88 | Watr | WATR | - | - | +| 89 | Westend | WND | Subscan | [nova-wallet-westend](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-westend) | +| 90 | XX network | XX | XX explorer
Polkastats | [nova-wallet-xx-network](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-xx-network) | +| 91 | Zeitgeist | ZTG | Subscan
Sub.ID | [nova-wallet-zeitgeist](https://explorer.subquery.network/subquery/nova-wallet/nova-wallet-zeitgeist) | +| 92 | krest | KREST | Subscan | - | diff --git a/chains/apply_dev_to_prod.py b/chains/apply_dev_to_prod.py index bd7e77ee3..a7a26041a 100644 --- a/chains/apply_dev_to_prod.py +++ b/chains/apply_dev_to_prod.py @@ -22,4 +22,4 @@ def get_ids(chains): with open("chains.json", "w") as fout: - json.dump(prod_chains, fout, indent=4) \ No newline at end of file + json.dump(prod_chains, fout, indent=4) diff --git a/chains/chains.json b/chains/chains.json index 42f830824..ee61ea431 100644 --- a/chains/chains.json +++ b/chains/chains.json @@ -39,10 +39,10 @@ "event": "https://polkascan.io/polkadot/event/{event}" } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/polkadot.json", "overridesCommon": true }, "externalApi": { @@ -56,7 +56,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" } }, "options": [ @@ -103,10 +103,10 @@ "event": "https://polkascan.io/kusama/event/{event}" } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/kusama.json", "overridesCommon": true }, "externalApi": { @@ -120,7 +120,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -164,10 +164,10 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/westend.json", "overridesCommon": true }, "externalApi": { @@ -181,7 +181,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -224,10 +224,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/statemine.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -269,7 +269,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -280,7 +280,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -302,10 +302,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/moonriver.json", "overridesCommon": false }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -350,10 +350,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/moonriver.json", "overridesCommon": false }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -393,7 +393,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5 }, { @@ -423,7 +423,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -434,7 +434,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -459,10 +459,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/parallel.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -491,10 +491,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -527,7 +527,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -560,10 +560,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/kilt.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/kilt.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -605,10 +605,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/calamari.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 } ] diff --git a/chains/chains_dev.json b/chains/chains_dev.json index 31604e5cd..503e15d10 100644 --- a/chains/chains_dev.json +++ b/chains/chains_dev.json @@ -39,10 +39,10 @@ "event": "https://polkascan.io/polkadot/event/{event}" } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/polkadot.json", "overridesCommon": true }, "externalApi": { @@ -56,7 +56,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot-dev.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" } }, "options": [ @@ -107,10 +107,10 @@ "account": "https://sub.id/#/{address}" } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/kusama.json", "overridesCommon": true }, "externalApi": { @@ -124,7 +124,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -168,10 +168,10 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/westend.json", "overridesCommon": true }, "externalApi": { @@ -185,7 +185,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -209,16 +209,16 @@ "name": "Laminar Test Node" } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Rococo.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/polkadot.json", "overridesCommon": true }, "externalApi": { "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/rococo.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/rococo.json" } }, "options": [ @@ -261,10 +261,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/statemine.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -306,7 +306,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -317,7 +317,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -339,10 +339,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/moonriver.json", "overridesCommon": false }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -387,10 +387,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/moonriver.json", "overridesCommon": false }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -429,10 +429,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/moonbase.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/moonbase.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1287, "options": [ "ethereumBased", @@ -456,16 +456,16 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/polkatrain.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/polkatrain.json", "overridesCommon": true }, "externalApi": { "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkatrain.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkatrain.json" } }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 0, "options": [ "crowdloans", @@ -506,7 +506,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5 }, { @@ -536,7 +536,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -547,7 +547,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -571,10 +571,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/subsocial.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/subsocial.json", "overridesCommon": false }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -599,10 +599,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/parallel.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -627,10 +627,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -654,7 +654,7 @@ "name": "OnFinality node" } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "addressPrefix": 42 }, { @@ -679,10 +679,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/altair.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/altair.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "addressPrefix": 136 }, { @@ -715,7 +715,7 @@ "event": null } ], - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -748,10 +748,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/kilt.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/kilt.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -779,10 +779,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/kilt.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/kilt.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38, "options": [ "testnet" @@ -826,10 +826,10 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/calamari.json", "overridesCommon": true }, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 } ] diff --git a/chains/chains_validator.yaml b/chains/chains_validator.yaml index eef61d7e1..d284fad1e 100644 --- a/chains/chains_validator.yaml +++ b/chains/chains_validator.yaml @@ -2,4 +2,4 @@ chain_files: - chains.json - chains_dev.json - v2/chains_dev.json - - v2/chains.json \ No newline at end of file + - v2/chains.json diff --git a/chains/types/bifrost.json b/chains/types/bifrost.json index 94926ce15..4e80f127d 100644 --- a/chains/types/bifrost.json +++ b/chains/types/bifrost.json @@ -11,4 +11,4 @@ "237": "GenericCall" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/types/karura.json b/chains/types/karura.json index e5e759122..9f5f71bbf 100644 --- a/chains/types/karura.json +++ b/chains/types/karura.json @@ -11,4 +11,4 @@ "194": "GenericCall" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/types/parallel.json b/chains/types/parallel.json index 621668059..ffb663ea3 100644 --- a/chains/types/parallel.json +++ b/chains/types/parallel.json @@ -11,4 +11,4 @@ "154": "GenericCall" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/types/polkadot.json b/chains/types/polkadot.json index d0d2b7960..e24ae09f0 100644 --- a/chains/types/polkadot.json +++ b/chains/types/polkadot.json @@ -11,4 +11,4 @@ "130": "GenericCall" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/types/statemine.json b/chains/types/statemine.json index dd8e617d6..25809b661 100644 --- a/chains/types/statemine.json +++ b/chains/types/statemine.json @@ -11,4 +11,4 @@ "243": "GenericCall" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v10/chains.json b/chains/v10/chains.json new file mode 100644 index 000000000..51df758de --- /dev/null +++ b/chains/v10/chains.json @@ -0,0 +1,6052 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 2" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30 + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c1.hashed.network", + "name": "Hashed systems 1 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Darwinia.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + } +] diff --git a/chains/v10/chains_dev.json b/chains/v10/chains_dev.json new file mode 100644 index 000000000..630e3baee --- /dev/null +++ b/chains/v10/chains_dev.json @@ -0,0 +1,7286 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "karura" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": "parachain", + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": "aura-relaychain" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "altair" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "acala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "turing" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42, + "options": [ + "governance-v1" + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "tanganika" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": "relaychain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance", + "governance-v1" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c1.hashed.network", + "name": "Hashed systems 1 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Darwinia.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + } +] diff --git a/chains/v11/chains.json b/chains/v11/chains.json new file mode 100644 index 000000000..255de4d3d --- /dev/null +++ b/chains/v11/chains.json @@ -0,0 +1,6572 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 2" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Darwinia.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "extrinsic": null, + "account": "https://explorer.vara-network.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "via IBP-GeoDNS2" + }, + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "via IBP-GeoDNS1" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + } +] diff --git a/chains/v11/chains_dev.json b/chains/v11/chains_dev.json new file mode 100644 index 000000000..e3a691e7c --- /dev/null +++ b/chains/v11/chains_dev.json @@ -0,0 +1,7927 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "karura" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": "parachain", + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": "aura-relaychain" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "acala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "99ded175d436bee7d751fa3f2f8c7a257ddc063a541f8daa5e6152604f66b2a0", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-worm", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": "relaychain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance", + "governance-v1" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ajuna" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Darwinia.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "staking": "relaychain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "extrinsic": null, + "account": "https://explorer.vara-network.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}", + "event": null + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}", + "event": null + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "via IBP-GeoDNS2" + }, + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "via IBP-GeoDNS1" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude_foucoco.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + } +] diff --git a/chains/v12/chains.json b/chains/v12/chains.json new file mode 100644 index 000000000..a629a596f --- /dev/null +++ b/chains/v12/chains.json @@ -0,0 +1,6725 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 2" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "99ded175d436bee7d751fa3f2f8c7a257ddc063a541f8daa5e6152604f66b2a0", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://efinity.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": [ + "aleph-zero" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Darwinia.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "extrinsic": null, + "account": "https://explorer.vara-network.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "via IBP-GeoDNS2" + }, + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "via IBP-GeoDNS1" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + } +] diff --git a/chains/v12/chains_dev.json b/chains/v12/chains_dev.json new file mode 100644 index 000000000..458e89fc5 --- /dev/null +++ b/chains/v12/chains_dev.json @@ -0,0 +1,8329 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend__bm92Y" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend__bm92Y" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "karura" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": [ + "parachain" + ], + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": [ + "aura-relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "acala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "99ded175d436bee7d751fa3f2f8c7a257ddc063a541f8daa5e6152604f66b2a0", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://efinity.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-worm", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": [ + "aleph-zero" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance", + "governance-v1" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ajuna" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Darwinia.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "extrinsic": null, + "account": "https://explorer.vara-network.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}", + "event": null + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}", + "event": null + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "via IBP-GeoDNS2" + }, + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "via IBP-GeoDNS1" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude_foucoco.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + }, + { + "chainId": "418ae94c9fce02b1ab3b5bc211cd2f2133426f2861d97482bbdfdac1bbb0fb92", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-testnet.interlay.io:443/parachain", + "name": "Kintsugi Labs node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay_Testnet.svg", + "addressPrefix": 2032, + "options": [ + "testnet" + ] + } +] diff --git a/chains/v13/chains.json b/chains/v13/chains.json new file mode 100644 index 000000000..5da824510 --- /dev/null +++ b/chains/v13/chains.json @@ -0,0 +1,7216 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 4" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "99ded175d436bee7d751fa3f2f8c7a257ddc063a541f8daa5e6152604f66b2a0", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://efinity.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": [ + "aleph-zero" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://kapex-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + } +] diff --git a/chains/v13/chains_dev.json b/chains/v13/chains_dev.json new file mode 100644 index 000000000..2b0d5c760 --- /dev/null +++ b/chains/v13/chains_dev.json @@ -0,0 +1,8957 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot__bm92Y" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot__bm92Y" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama" + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama__bm92Y" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama__bm92Y" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama" + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend__bm92Y" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend__bm92Y" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama" + } + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": [ + "parachain" + ], + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": [ + "aura-relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-rpc.gateway.pokt.network/", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "99ded175d436bee7d751fa3f2f8c7a257ddc063a541f8daa5e6152604f66b2a0", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://efinity.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero__bm92Y" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero__bm92Y" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 1000 + } + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": [ + "aleph-zero" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://kapex-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polymesh" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": [ + "relaychain", + "nomination-pools" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ajuna" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock http testnet node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock wss testnet node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock http node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock wss node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}" + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}" + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---kusama-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-collectives" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude_foucoco.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + }, + { + "chainId": "418ae94c9fce02b1ab3b5bc211cd2f2133426f2861d97482bbdfdac1bbb0fb92", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-testnet.interlay.io:443/parachain", + "name": "Kintsugi Labs node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay_Testnet.svg", + "addressPrefix": 2032, + "options": [ + "testnet" + ] + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---krest" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + }, + { + "url": "wss://manta.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/manta.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77 + }, + { + "chainId": "9b86ea7366584c5ddf67de243433fcc05732864933258de9467db46eb9bef8b5", + "name": "Vara Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TVARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://vit.vara-network.io", + "name": "Gear Tech test node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara_Testnet.svg", + "addressPrefix": 137, + "options": [ + "testnet" + ] + } +] diff --git a/chains/v14/chains.json b/chains/v14/chains.json new file mode 100644 index 000000000..bbc4e9724 --- /dev/null +++ b/chains/v14/chains.json @@ -0,0 +1,7665 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking" + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking" + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama" + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 4" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + } + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking" + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking" + } + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/enjin_matrixchain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110 + } +] diff --git a/chains/v14/chains_dev.json b/chains/v14/chains_dev.json new file mode 100644 index 000000000..bc10e6419 --- /dev/null +++ b/chains/v14/chains_dev.json @@ -0,0 +1,9605 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking" + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking" + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama" + } + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": [ + "parachain" + ], + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + }, + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": [ + "parachain" + ], + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": [ + "aura-relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + } + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking" + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": [ + "aleph-zero" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "77afd6190f1554ad45fd0d31aee62aacc33c6db0ea801129acb813f913e0764f", + "name": "Paseo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "PAS", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/paseo", + "name": "IBP-GeoDNS1" + }, + { + "url": "wss://rpc.dotters.network/paseo", + "name": "IBP-GeoDNS2" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Paseo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans", + "proxy" + ] + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking" + } + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polymesh" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": [ + "relaychain", + "nomination-pools" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ajuna" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://darwinia-rpc.darwiniacommunitydao.xyz", + "name": "Darwinia Community node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock http testnet node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock wss testnet node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock http node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock wss node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}" + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}" + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---kusama-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-collectives" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude_foucoco.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + }, + { + "chainId": "418ae94c9fce02b1ab3b5bc211cd2f2133426f2861d97482bbdfdac1bbb0fb92", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-testnet.interlay.io:443/parachain", + "name": "Kintsugi Labs node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay_Testnet.svg", + "addressPrefix": 2032, + "options": [ + "testnet" + ] + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---krest" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/manta.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77 + }, + { + "chainId": "9b86ea7366584c5ddf67de243433fcc05732864933258de9467db46eb9bef8b5", + "name": "Vara Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TVARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://vit.vara-network.io", + "name": "Gear Tech test node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara_Testnet.svg", + "addressPrefix": 137, + "options": [ + "testnet" + ] + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/enjin_matrixchain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:592", + "name": "Astar EVM", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "https://astar.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "https://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 592, + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://blockscout.com/astar/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2031", + "name": "Centrifuge EVM", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "priceId": "centrifuge", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Fullnode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 2031, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:595", + "name": "Acala Mandala TC9", + "assets": [ + { + "assetId": 0, + "symbol": "mACA", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://eth-rpc-tc9.aca-staging.network", + "name": "wss node" + }, + { + "url": "https://eth-rpc-tc9.aca-staging.network", + "name": "http node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 595, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "EWX Staging Parachain Argon", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://ewx-staging-parachain-argon-wmfbanx0xb.energyweb.org/ws", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ewx_parachain_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/watr.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + } +] diff --git a/chains/v15/chains.json b/chains/v15/chains.json new file mode 100644 index 000000000..a93637190 --- /dev/null +++ b/chains/v15/chains.json @@ -0,0 +1,7696 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking" + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking" + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama" + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 4" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + } + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://composable.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking" + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking" + } + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc.3dpass.org", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/enjin_matrixchain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110 + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/watr.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + } +] diff --git a/chains/v15/chains_dev.json b/chains/v15/chains_dev.json new file mode 100644 index 000000000..5ce20418d --- /dev/null +++ b/chains/v15/chains_dev.json @@ -0,0 +1,9613 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking" + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking" + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama" + } + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/#/accounts/{address}", + "event": "https://westmint.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": [ + "parachain" + ], + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + }, + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": [ + "parachain" + ], + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": [ + "aura-relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + } + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking" + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": [ + "aleph-zero" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking" + } + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "account": "https://gov2.statescan.io/#/accounts/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polymesh" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": [ + "relaychain", + "nomination-pools" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc.3dpass.org", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ajuna" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://darwinia-rpc.darwiniacommunitydao.xyz", + "name": "Darwinia Community node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock http testnet node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock wss testnet node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock http node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock wss node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}" + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}" + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---kusama-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://polkadot-collectives-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-collectives" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude_foucoco.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + }, + { + "chainId": "418ae94c9fce02b1ab3b5bc211cd2f2133426f2861d97482bbdfdac1bbb0fb92", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-testnet.interlay.io:443/parachain", + "name": "Kintsugi Labs node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay_Testnet.svg", + "addressPrefix": 2032, + "options": [ + "testnet" + ] + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---krest" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/manta.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77 + }, + { + "chainId": "9b86ea7366584c5ddf67de243433fcc05732864933258de9467db46eb9bef8b5", + "name": "Vara Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TVARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://vit.vara-network.io", + "name": "Gear Tech test node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara_Testnet.svg", + "addressPrefix": 137, + "options": [ + "testnet" + ] + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/enjin_matrixchain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:592", + "name": "Astar EVM", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "https://astar.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "https://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 592, + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://blockscout.com/astar/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2031", + "name": "Centrifuge EVM", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "priceId": "centrifuge", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Fullnode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 2031, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:595", + "name": "Acala Mandala TC9", + "assets": [ + { + "assetId": 0, + "symbol": "mACA", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://eth-rpc-tc9.aca-staging.network", + "name": "wss node" + }, + { + "url": "https://eth-rpc-tc9.aca-staging.network", + "name": "http node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 595, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "EWX Staging Parachain Argon", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://ewx-staging-parachain-argon-wmfbanx0xb.energyweb.org/ws", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ewx_parachain_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/watr.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "assets": [ + { + "assetId": 0, + "symbol": "JOY", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.joystream.org", + "name": "Jsgenesis node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://joystream.subscan.io/extrinsic/{hash}", + "account": "https://joystream.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/joystream.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Joystream.svg", + "addressPrefix": 126 + } +] diff --git a/chains/v16/chains.json b/chains/v16/chains.json new file mode 100644 index 000000000..5d3c4009e --- /dev/null +++ b/chains/v16/chains.json @@ -0,0 +1,7930 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking", + "stakingMaxElectingVoters": 22500 + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking", + "stakingMaxElectingVoters": 12500 + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama", + "stakingMaxElectingVoters": 22500 + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2, + "additional": { + "relaychainAsNative": true + } + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 5" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 4" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-acala.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://acala-polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + }, + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x18000000", + "currencyIdType": "u32", + "existentialDeposit": "20000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "18761726", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + } + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking" + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking" + } + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x040000000000000000", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x040100000000000000", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/enjin_matrixchain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110 + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/watr.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "assets": [ + { + "assetId": 0, + "symbol": "JOY", + "priceId": "joystream", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.joystream.org", + "name": "Jsgenesis node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://joystream.subscan.io/extrinsic/{hash}", + "account": "https://joystream.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/joystream.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Joystream.svg", + "addressPrefix": 126 + }, + { + "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", + "name": "Dock", + "assets": [ + { + "assetId": 0, + "symbol": "DOCK", + "priceId": "dock", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOCK.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-node.dock.io", + "name": "Dock Association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://dock.subscan.io/extrinsic/{hash}", + "account": "https://dock.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dock.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Dock.svg", + "addressPrefix": 22 + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Energy Web X", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.energywebx.com/", + "name": "Energywebx node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ewx_parachain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg", + "addressPrefix": 42 + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polimec", + "assets": [ + { + "assetId": 0, + "symbol": "PLMC", + "priceId": "polimec", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.polimec.org", + "name": "Polimec node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polimec.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec.svg", + "addressPrefix": 41 + } +] diff --git a/chains/v16/chains_dev.json b/chains/v16/chains_dev.json new file mode 100644 index 000000000..34e1e7ca4 --- /dev/null +++ b/chains/v16/chains_dev.json @@ -0,0 +1,9855 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking", + "stakingMaxElectingVoters": 22500 + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking", + "stakingMaxElectingVoters": 12500 + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans", + "governance", + "proxy" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama", + "stakingMaxElectingVoters": 22500 + } + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "buyProviders": { + "banxa": { + "coinType": "WND", + "blockchain": "WND" + } + } + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "statemine", + "typeExtras": { + "assetId": "0x02010902", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 3, + "symbol": "JOE", + "precision": 3, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "8" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://wnd-rpc.stakeworld.io/assethub", + "name": "Stakeworld node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/#/accounts/{address}", + "event": "https://westmint.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---westmint-test" + } + ] + }, + "options": [ + "testnet", + "swap-hub" + ], + "additional": { + "relaychainAsNative": true + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2, + "options": [ + "swap-hub" + ], + "additional": { + "relaychainAsNative": true + } + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": [ + "parachain" + ], + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + }, + { + "url": "wss://moonbase-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": [ + "parachain" + ], + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": [ + "aura-relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-acala.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://acala-polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + }, + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.flashbots.net", + "name": "Flashbots rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0, + "options": [ + "swap-hub" + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x18000000", + "currencyIdType": "u32", + "existentialDeposit": "20000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "18761726", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + } + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking" + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": [ + "aleph-zero" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans", + "proxy" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking" + } + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "account": "https://gov2.statescan.io/#/accounts/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polymesh" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": [ + "relaychain", + "nomination-pools" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x040000000000000000", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x040100000000000000", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ajuna" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://darwinia-rpc.darwiniacommunitydao.xyz", + "name": "Darwinia Community node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia_crab.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/frequency.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock http testnet node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock wss testnet node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock http node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock wss node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}" + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}" + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/giant_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---kusama-bridgehub" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama_bridge_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-collectives" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/collectives.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude_foucoco.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + }, + { + "chainId": "418ae94c9fce02b1ab3b5bc211cd2f2133426f2861d97482bbdfdac1bbb0fb92", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-testnet.interlay.io:443/parachain", + "name": "Kintsugi Labs node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay_Testnet.svg", + "addressPrefix": 2032, + "options": [ + "testnet" + ] + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---krest" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/krest.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/jur.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/manta.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77 + }, + { + "chainId": "9b86ea7366584c5ddf67de243433fcc05732864933258de9467db46eb9bef8b5", + "name": "Vara Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TVARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://vit.vara-network.io", + "name": "Gear Tech test node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/vara_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara_Testnet.svg", + "addressPrefix": 137, + "options": [ + "testnet" + ] + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/enjin_matrixchain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:592", + "name": "Astar EVM", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "https://astar.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "https://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 592, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2031", + "name": "Centrifuge EVM", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "priceId": "centrifuge", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Fullnode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 2031, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "7c34d42fc815d392057c78b49f2755c753440ccd38bcb0405b3bcfb601d08734", + "parentId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + }, + { + "assetId": 1, + "symbol": "HOP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "0x010100b11c", + "palletName": "ForeignAssets" + } + } + ], + "nodes": [ + { + "url": "wss://rococo-asset-hub-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rococo-asset-hub-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-rococo.subscan.io/extrinsic/{hash}", + "account": "https://assethub-rococo.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---westmint" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo_asset_hub.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "swap-hub" + ], + "additional": { + "relaychainAsNative": true + } + }, + { + "chainId": "eip155:595", + "name": "Acala Mandala TC9", + "assets": [ + { + "assetId": 0, + "symbol": "mACA", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://eth-rpc-tc9.aca-staging.network", + "name": "wss node" + }, + { + "url": "https://eth-rpc-tc9.aca-staging.network", + "name": "http node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 595, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "EWX Staging Parachain Argon", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://ewx-staging-parachain-argon-wmfbanx0xb.energyweb.org/ws", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ewx_parachain_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/watr.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "assets": [ + { + "assetId": 0, + "symbol": "JOY", + "priceId": "joystream", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.joystream.org", + "name": "Jsgenesis node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://joystream.subscan.io/extrinsic/{hash}", + "account": "https://joystream.subscan.io/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/joystream.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Joystream.svg", + "addressPrefix": 126 + }, + { + "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", + "name": "Dock", + "assets": [ + { + "assetId": 0, + "symbol": "DOCK", + "priceId": "dock", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOCK.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-node.dock.io", + "name": "Dock Association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://dock.subscan.io/extrinsic/{hash}", + "account": "https://dock.subscan.io/account/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dock.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Dock.svg", + "addressPrefix": 22 + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polimec", + "assets": [ + { + "assetId": 0, + "symbol": "PLMC", + "priceId": "polimec", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg", + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.polimec.org", + "name": "Polimec node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polimec.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec.svg", + "addressPrefix": 41 + }, + { + "chainId": "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Energy Web X", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.energywebx.com/", + "name": "Energywebx node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ewx_parachain.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg", + "addressPrefix": 42 + }, + { + "chainId": "ac123be800b7c9a3e3449bb70edd8e3d9008d27826381451eebf94bce1db1fbe", + "name": "Energy Web X Rococo", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.testnet.energywebx.com", + "name": "Energy Web X Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ewx_rococo_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + } +] diff --git a/chains/v17/chains.json b/chains/v17/chains.json new file mode 100644 index 000000000..e42502273 --- /dev/null +++ b/chains/v17/chains.json @@ -0,0 +1,7791 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "fullSyncByDefault" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "fullSyncByDefault" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking", + "stakingMaxElectingVoters": 12500 + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2, + "additional": { + "relaychainAsNative": true, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 5" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/82fd5b2925e341719f10b7ed4376a646", + "name": "Infura node 6" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/5717b02168b5434ba23801e1ea755afb", + "name": "Infura node 7" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-1.bit.country/wss", + "name": "MetaverseNetwork node 1" + }, + { + "url": "wss://pioneer-rpc-2.bit.country/wss", + "name": "MetaverseNetwork node 2" + }, + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node 3" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-acala.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://acala-polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + }, + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "additional": { + "feeViaRuntimeCall": true + }, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x18000000", + "currencyIdType": "u32", + "existentialDeposit": "20000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "18761726", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x08000000", + "currencyIdType": "u32", + "existentialDeposit": "54945054945", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "USDC-Moonbeam", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x15000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + }, + "options": [ + "fullSyncByDefault" + ] + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + } + ], + "nodes": [ + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c3.hashed.live", + "name": "Hashed systems 3 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110 + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "assets": [ + { + "assetId": 0, + "symbol": "JOY", + "priceId": "joystream", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.joystream.org", + "name": "Jsgenesis node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://joystream.subscan.io/extrinsic/{hash}", + "account": "https://joystream.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Joystream.svg", + "addressPrefix": 126 + }, + { + "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", + "name": "Dock", + "assets": [ + { + "assetId": 0, + "symbol": "DOCK", + "priceId": "dock", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOCK.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-node.dock.io", + "name": "Dock Association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://dock.subscan.io/extrinsic/{hash}", + "account": "https://dock.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Dock.svg", + "addressPrefix": 22 + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Energy Web X", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.energywebx.com/", + "name": "Energywebx node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg", + "addressPrefix": 42 + }, + { + "chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "InvArch", + "assets": [ + { + "assetId": 0, + "symbol": "VARCH", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg", + "addressPrefix": 117 + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polimec", + "assets": [ + { + "assetId": 0, + "symbol": "PLMC", + "priceId": "polimec", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.polimec.org", + "name": "Polimec node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec.svg", + "addressPrefix": 41 + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta Atlantic", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "priceId": "manta-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "8" + } + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + } + ] + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/manta-manta-staking", + "defaultBlockTime": 12000 + } + } +] diff --git a/chains/v17/chains_dev.json b/chains/v17/chains_dev.json new file mode 100644 index 000000000..9175b1b43 --- /dev/null +++ b/chains/v17/chains_dev.json @@ -0,0 +1,9599 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy", + "fullSyncByDefault" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Polkascan", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy", + "fullSyncByDefault" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking", + "stakingMaxElectingVoters": 12500 + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans", + "governance", + "proxy" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "buyProviders": { + "banxa": { + "coinType": "WND", + "blockchain": "WND" + } + } + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "statemine", + "typeExtras": { + "assetId": "0x02010902", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 3, + "symbol": "JOE", + "precision": 3, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "8" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://wnd-rpc.stakeworld.io/assethub", + "name": "Stakeworld node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/#/accounts/{address}", + "event": "https://westmint.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---westmint-test" + } + ] + }, + "options": [ + "testnet", + "swap-hub", + "proxy" + ], + "additional": { + "relaychainAsNative": true, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2, + "options": [ + "swap-hub" + ], + "additional": { + "relaychainAsNative": true, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": [ + "parachain" + ], + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + }, + { + "url": "wss://moonbase-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + }, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": [ + "parachain" + ], + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": [ + "aura-relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-1.bit.country/wss", + "name": "MetaverseNetwork node 1" + }, + { + "url": "wss://pioneer-rpc-2.bit.country/wss", + "name": "MetaverseNetwork node 2" + }, + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node 3" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-acala.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://acala-polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + }, + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "additional": { + "feeViaRuntimeCall": true + }, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance", + "governance-v1", + "proxy" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0, + "options": [ + "swap-hub" + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x18000000", + "currencyIdType": "u32", + "existentialDeposit": "20000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "18761726", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x08000000", + "currencyIdType": "u32", + "existentialDeposit": "54945054945", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "USDC-Moonbeam", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x15000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + }, + "options": [ + "fullSyncByDefault" + ] + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + } + ], + "nodes": [ + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": [ + "aleph-zero" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans", + "proxy" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "account": "https://gov2.statescan.io/#/accounts/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polymesh" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "eb9f47779a9f5033c160c03511b5e4c1b2869210d7bc78a6ad7d0f28897455a7", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": [ + "relaychain", + "nomination-pools" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/stepanLav/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/stepanLav/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/stepanLav/novasama-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance", + "governance-v1", + "proxy" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c3.hashed.live", + "name": "Hashed systems 3 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ajuna" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://darwinia-rpc.darwiniacommunitydao.xyz", + "name": "Darwinia Community node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock http testnet node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock wss testnet node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock http node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock wss node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}" + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}" + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---kusama-bridgehub" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-collectives" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + }, + { + "chainId": "418ae94c9fce02b1ab3b5bc211cd2f2133426f2861d97482bbdfdac1bbb0fb92", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-testnet.interlay.io:443/parachain", + "name": "Kintsugi Labs node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay_Testnet.svg", + "addressPrefix": 2032, + "options": [ + "testnet" + ] + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---krest" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "explorers": [ + { + "name": "Polkascan", + "account": "https://jur.io/explorer/jur/account/{address}", + "event": "https://jur.io/explorer/jur/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77 + }, + { + "chainId": "9b86ea7366584c5ddf67de243433fcc05732864933258de9467db46eb9bef8b5", + "name": "Vara Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TVARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://vit.vara-network.io", + "name": "Gear Tech test node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara_Testnet.svg", + "addressPrefix": 137, + "options": [ + "testnet" + ] + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:592", + "name": "Astar EVM", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "https://astar.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "https://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 592, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2031", + "name": "Centrifuge EVM", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "priceId": "centrifuge", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Fullnode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 2031, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "7c34d42fc815d392057c78b49f2755c753440ccd38bcb0405b3bcfb601d08734", + "parentId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + }, + { + "assetId": 1, + "symbol": "HOP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "0x010100b11c", + "palletName": "ForeignAssets" + } + } + ], + "nodes": [ + { + "url": "wss://rococo-asset-hub-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rococo-asset-hub-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-rococo.subscan.io/extrinsic/{hash}", + "account": "https://assethub-rococo.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---westmint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "swap-hub" + ], + "additional": { + "relaychainAsNative": true + } + }, + { + "chainId": "eip155:595", + "name": "Acala Mandala TC9", + "assets": [ + { + "assetId": 0, + "symbol": "mACA", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://eth-rpc-tc9.aca-staging.network", + "name": "wss node" + }, + { + "url": "https://eth-rpc-tc9.aca-staging.network", + "name": "http node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 595, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "EWX Staging Parachain Argon", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://ewx-staging-parachain-argon-wmfbanx0xb.energyweb.org/ws", + "name": "EWX node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "assets": [ + { + "assetId": 0, + "symbol": "JOY", + "priceId": "joystream", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.joystream.org", + "name": "Jsgenesis node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://joystream.subscan.io/extrinsic/{hash}", + "account": "https://joystream.subscan.io/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Joystream.svg", + "addressPrefix": 126 + }, + { + "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", + "name": "Dock", + "assets": [ + { + "assetId": 0, + "symbol": "DOCK", + "priceId": "dock", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOCK.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-node.dock.io", + "name": "Dock Association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://dock.subscan.io/extrinsic/{hash}", + "account": "https://dock.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Dock.svg", + "addressPrefix": 22 + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polimec", + "assets": [ + { + "assetId": 0, + "symbol": "PLMC", + "priceId": "polimec", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg", + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.polimec.org", + "name": "Polimec node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec.svg", + "addressPrefix": 41 + }, + { + "chainId": "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Energy Web X", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.energywebx.com/", + "name": "Energywebx node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg", + "addressPrefix": 42 + }, + { + "chainId": "ac123be800b7c9a3e3449bb70edd8e3d9008d27826381451eebf94bce1db1fbe", + "name": "Energy Web X Rococo", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.testnet.energywebx.com", + "name": "Energy Web X Rococo node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "InvArch", + "assets": [ + { + "assetId": 0, + "symbol": "VARCH", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg", + "addressPrefix": 117 + }, + { + "chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c", + "name": "Crust", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "priceId": "crust-network", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.crust.network", + "name": "Crust node" + }, + { + "url": "wss://crust-mainnet-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crust.api.onfinality.io/public-ws", + "name": "OnFinallity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust.subscan.io/extrinsic/extrinsic/{hash}", + "account": "https://crust.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust.svg", + "addressPrefix": 66 + } +] diff --git a/chains/v18/chains.json b/chains/v18/chains.json new file mode 100644 index 000000000..3b066c19d --- /dev/null +++ b/chains/v18/chains.json @@ -0,0 +1,8073 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api-polkadot-full.dwellir.com/{DWELLIR_API_KEY}", + "name": "Nova Dwellir node" + }, + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy", + "fullSyncByDefault", + "pushSupport" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy", + "fullSyncByDefault", + "pushSupport" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking", + "stakingMaxElectingVoters": 12500 + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK (old)", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2, + "additional": { + "relaychainAsNative": true, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK (old)", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "priceId": "voucher-glmr", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + }, + { + "assetId": 22, + "symbol": "xcMANTA", + "precision": 18, + "type": "statemine", + "priceId": "manta-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "typeExtras": { + "assetId": "166446646689194205559791995948102903873" + } + }, + { + "assetId": 23, + "symbol": "xcUSDC", + "precision": 6, + "type": "statemine", + "priceId": "usd-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "166377000701797186346254371275954761085" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 5" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/82fd5b2925e341719f10b7ed4376a646", + "name": "Infura node 6" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/5717b02168b5434ba23801e1ea755afb", + "name": "Infura node 7" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK (old)", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "priceId": "voucher-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://moonriver-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "priceId": "voucher-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK (old)", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "priceId": "voucher-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15, + "buyProviders": { + "banxa": { + "coinType": "KILT", + "blockchain": "KILT" + } + } + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Karura.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Karura.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-1.bit.country/wss", + "name": "MetaverseNetwork node 1" + }, + { + "url": "wss://pioneer-rpc-2.bit.country/wss", + "name": "MetaverseNetwork node 2" + }, + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node 3" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "buyProviders": { + "banxa": { + "coinType": "ACA", + "blockchain": "ACA" + } + } + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "PINK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-acala.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://acala-polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + }, + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "additional": { + "feeViaRuntimeCall": true + }, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://astar.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + }, + { + "assetId": 3, + "symbol": "DED", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "typeExtras": { + "assetId": "30" + } + }, + { + "assetId": 4, + "symbol": "PINK", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "assetId": "23" + } + }, + { + "assetId": 5, + "symbol": "DOTA", + "precision": 4, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOTA.svg", + "typeExtras": { + "assetId": "18" + } + }, + { + "assetId": 6, + "symbol": "STINK", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STINK.svg", + "typeExtras": { + "assetId": "42069" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "buyProviders": { + "banxa": { + "coinType": "HDX", + "blockchain": "HDX" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Acala.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x18000000", + "currencyIdType": "u32", + "existentialDeposit": "20000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "18761726", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x08000000", + "currencyIdType": "u32", + "existentialDeposit": "54945054945", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "USDC-Moonbeam", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x15000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "4-Pool", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/4-Pool.svg", + "typeExtras": { + "currencyIdScale": "0x64000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "2-Pool", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/2-Pool.svg", + "typeExtras": { + "currencyIdScale": "0x65000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "2-Pool-Stbl", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/2-Pool-Stbl.svg", + "typeExtras": { + "currencyIdScale": "0x66000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "currencyIdScale": "0x19000000", + "currencyIdType": "u32", + "existentialDeposit": "1224384348939740000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "109890109890", + "transfersEnabled": true + } + }, + { + "assetId": 27, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg", + "typeExtras": { + "currencyIdScale": "0x1b000000", + "currencyIdType": "u32", + "existentialDeposit": "7874015748", + "transfersEnabled": true + } + }, + { + "assetId": 28, + "symbol": "USDT-Moonbeam", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x17000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 29, + "symbol": "DED", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "typeExtras": { + "currencyIdScale": "0x53420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 30, + "symbol": "PINK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "currencyIdScale": "0x55420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 31, + "symbol": "STINK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STINK.svg", + "typeExtras": { + "currencyIdScale": "0x62420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 32, + "symbol": "DOTA", + "precision": 4, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOTA.svg", + "typeExtras": { + "currencyIdScale": "0x66420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1", + "hydradx-swaps" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + }, + "options": [ + "fullSyncByDefault", + "pushSupport" + ] + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + }, + { + "assetId": 6, + "symbol": "DED", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "typeExtras": { + "assetId": "119367686984583275840673742485354142551" + } + }, + { + "assetId": 7, + "symbol": "PINK", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "assetId": "339306133874233608313826294843504252047" + } + }, + { + "assetId": 8, + "symbol": "GLMR", + "precision": 12, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "182269558229932594457975666948556356791" + } + } + ], + "nodes": [ + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "NeuroWeb", + "assets": [ + { + "assetId": 0, + "symbol": "NEURO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEURO.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + }, + { + "url": "wss://origintrail-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://neuroweb.subscan.io/account/{address}", + "extrinsic": "https://neuroweb.subscan.io/extrinsic/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/NeuroWeb.svg", + "addressPrefix": 101, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNCPOLKA" + } + } + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "priceId": "voucher-glmr", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "vsDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0a00", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "MANTA", + "precision": 18, + "priceId": "manta-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "typeExtras": { + "currencyIdScale": "0x0808", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "vMANTA", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMANTA.svg", + "typeExtras": { + "currencyIdScale": "0x0908", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://litentry.statescan.io/#/accounts/{address}", + "extrinsic": "https://litentry.statescan.io/#/extrinsics/{hash}", + "event": "https://litentry.statescan.io/#/events/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK (old)", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "priceId": "voucher-ksm", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c3.hashed.live", + "name": "Hashed systems 3 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---ajuna" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137 + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---jur" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin Matrix", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110 + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "assets": [ + { + "assetId": 0, + "symbol": "JOY", + "priceId": "joystream", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.joystream.org", + "name": "Jsgenesis node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://joystream.subscan.io/extrinsic/{hash}", + "account": "https://joystream.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Joystream.svg", + "addressPrefix": 126 + }, + { + "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", + "name": "Dock", + "assets": [ + { + "assetId": 0, + "symbol": "DOCK", + "priceId": "dock", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOCK.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-node.dock.io", + "name": "Dock Association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://dock.subscan.io/extrinsic/{hash}", + "account": "https://dock.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Dock.svg", + "addressPrefix": 22 + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Energy Web X", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.energywebx.com/", + "name": "Energywebx node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg", + "addressPrefix": 42 + }, + { + "chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "InvArch", + "assets": [ + { + "assetId": 0, + "symbol": "VARCH", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg", + "addressPrefix": 117 + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polimec", + "assets": [ + { + "assetId": 0, + "symbol": "PLMC", + "priceId": "polimec", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg", + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.polimec.org", + "name": "Polimec node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://polimec.statescan.io/#/accounts/{address}", + "event": "https://polimec.statescan.io/#/events/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---polymec" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---polymec" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec.svg", + "addressPrefix": 41, + "additional": { + "themeColor": "#96CC5A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polimec-plmc-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta Atlantic", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "priceId": "manta-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "8" + } + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + } + ] + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/manta-manta-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:169", + "name": "Manta Pacific", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://pacific-rpc.manta.network/http", + "name": "Manta rpc 1 node" + }, + { + "url": "https://1rpc.io/manta", + "name": "Manta rpc 2 node" + }, + { + "url": "wss://pacific-rpc.manta.network/ws", + "name": "Manta wss node" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://pacific-explorer.manta.network/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "explorers": [ + { + "name": "Manta Pacific Block Explorer", + "extrinsic": "https://pacific-explorer.manta.network/tx/{hash}", + "account": "https://pacific-explorer.manta.network/address/{address}" + }, + { + "name": "Manta Socialscan", + "extrinsic": "https://manta.socialscan.io/tx/{hash}", + "account": "https://manta.socialscan.io/address/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 169, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "ae1ca86c936aa252cdc45f4f436220567b2bbbcc4834f5b8f4191462baf19dfb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Continuum", + "assets": [ + { + "assetId": 0, + "symbol": "NUUM", + "priceId": "mnet-continuum", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NUUM.svg" + } + ], + "nodes": [ + { + "url": "wss://continuum-rpc-1.metaverse.network/wss", + "name": "MNet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://continuum.subscan.io/extrinsic/{hash}", + "account": "https://continuum.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Continuum.svg", + "addressPrefix": 268 + }, + { + "chainId": "d8761d3c88f26dc12875c00d3165f7d67243d56fc85b4cf19937601a7916e5a9", + "name": "Enjin Relay", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.relay.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-relay-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://enjin.subscan.io/extrinsic/{hash}", + "account": "https://enjin.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 2135 + }, + { + "chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Curio", + "assets": [ + { + "assetId": 0, + "symbol": "CGT", + "precision": 18, + "priceId": "curio-governance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg" + } + ], + "nodes": [ + { + "url": "wss://archive.parachain.curioinvest.com", + "name": "Curio node" + }, + { + "url": "wss://parachain.curioinvest.com/", + "name": "Curio node 2" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg", + "addressPrefix": 777 + } +] diff --git a/chains/v18/chains_dev.json b/chains/v18/chains_dev.json new file mode 100644 index 000000000..0c4b6b0a0 --- /dev/null +++ b/chains/v18/chains_dev.json @@ -0,0 +1,10303 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "DOT", + "blockchain": "DOT" + } + } + } + ], + "nodes": [ + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api-polkadot-full.dwellir.com/{DWELLIR_API_KEY}", + "name": "Nova Dwellir node" + }, + { + "url": "wss://dot-rpc.stakeworld.io", + "name": "Stakeworld node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc-polkadot.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot-gov" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy", + "fullSyncByDefault", + "pushSupport" + ], + "additional": { + "themeColor": "#E6007A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-dot-staking", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": [ + "relaychain", + "nomination-pools" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {}, + "banxa": { + "coinType": "KSM", + "blockchain": "KSM" + } + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-kusama.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "proxy", + "fullSyncByDefault", + "pushSupport" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/kusama-ksm-staking", + "stakingMaxElectingVoters": 12500 + } + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.ibp.network/westend", + "name": "IBP network node" + }, + { + "url": "wss://rpc.dotters.network/westend", + "name": "Dotters Net node" + }, + { + "url": "wss://westend.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans", + "governance", + "proxy" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadot-and-kusama", + "stakingMaxElectingVoters": 22500, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "buyProviders": { + "banxa": { + "coinType": "WND", + "blockchain": "WND" + } + } + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "statemine", + "typeExtras": { + "assetId": "0x02010902", + "palletName": "ForeignAssets" + } + }, + { + "assetId": 3, + "symbol": "JOE", + "precision": 3, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "8" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://wnd-rpc.stakeworld.io/assethub", + "name": "Stakeworld node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/#/accounts/{address}", + "event": "https://westmint.statescan.io/#/events/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---westmint-test" + } + ] + }, + "options": [ + "testnet", + "swap-hub", + "proxy" + ], + "additional": { + "relaychainAsNative": true, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK (old)", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemine", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemine", + "name": "Dotters Net node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-kusama.subscan.io/extrinsic/{hash}", + "account": "https://assethub-kusama.subscan.io/account/{address}" + }, + { + "name": "Statescan", + "account": "https://statemine.statescan.io/#/accounts/{address}", + "event": "https://statemine.statescan.io/#/events/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Asset_Hub.svg", + "addressPrefix": 2, + "options": [ + "swap-hub" + ], + "additional": { + "relaychainAsNative": true, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura", + "buyProviders": { + "banxa": { + "coinType": "KAR", + "blockchain": "KAR" + } + } + }, + { + "assetId": 1, + "symbol": "aSEED", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "priceId": "ausd-seed-karura", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK (old)", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://karura.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://karura.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MOONRIVER" + }, + "banxa": { + "coinType": "MOVR", + "blockchain": "MOVR" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK (old)", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + }, + { + "assetId": 18, + "symbol": "xcvKSM", + "precision": 12, + "priceId": "voucher-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "264344629840762281112027368930249420542" + } + }, + { + "assetId": 19, + "symbol": "xcvBNC", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "assetId": "72145018963825376852137222787619937732" + } + }, + { + "assetId": 20, + "symbol": "xcvMOVR", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "assetId": "203223821023327994093278529517083736593" + } + }, + { + "assetId": 21, + "symbol": "xcMGX", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "typeExtras": { + "assetId": "118095707745084482624853002839493125353" + } + }, + { + "assetId": 22, + "symbol": "xcTUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "133300872918374599700079037156071917454" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://moonriver.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://moonriver-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://moonriver.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance" + ], + "additional": { + "themeColor": "#E4A228", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonriver-movr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": [ + "parachain" + ], + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + }, + { + "url": "wss://moonbase-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 11, + "symbol": "vKSM", + "precision": 12, + "priceId": "voucher-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "assetId": "18446744073709551628" + } + }, + { + "assetId": 12, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551627" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://shiden.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + }, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": [ + "parachain" + ], + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNC" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK (old)", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "priceId": "voucher-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "vBNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vBNC.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "vMOVR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMOVR.svg", + "typeExtras": { + "currencyIdScale": "0x010a", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost-kusama.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1", + "governance" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "KINT", + "blockchain": "KINT" + } + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": [ + "aura-relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 10, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "119" + } + }, + { + "assetId": 11, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "121" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "buyProviders": { + "banxa": { + "coinType": "BSX", + "blockchain": "BSX" + } + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://altair.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + }, + { + "assetId": 11, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 12, + "symbol": "SDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 13, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "assetId": "13" + } + }, + { + "assetId": 14, + "symbol": "BIT", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 15, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", + "typeExtras": { + "assetId": "15" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://khala.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15, + "buyProviders": { + "banxa": { + "coinType": "KILT", + "blockchain": "KILT" + } + } + } + ], + "nodes": [ + { + "url": "wss://kilt-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "12" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "11" + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "14" + } + }, + { + "assetId": 5, + "symbol": "DAI-Karura", + "precision": 18, + "priceId": "dai", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Karura.svg", + "typeExtras": { + "assetId": "15" + } + }, + { + "assetId": 6, + "symbol": "USDC-Karura", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Karura.svg", + "typeExtras": { + "assetId": "16" + } + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#D632C1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/calamari-kma-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg", + "buyProviders": { + "transak": { + "network": "PIONEER" + } + } + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer-rpc-1.bit.country/wss", + "name": "MetaverseNetwork node 1" + }, + { + "url": "wss://pioneer-rpc-2.bit.country/wss", + "name": "MetaverseNetwork node 2" + }, + { + "url": "wss://pioneer-rpc-3.bit.country/wss", + "name": "MetaverseNetwork node 3" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "buyProviders": { + "banxa": { + "coinType": "ACA", + "blockchain": "ACA" + } + } + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "PINK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-acala.luckyfriday.io", + "name": "LuckyFriday node" + }, + { + "url": "wss://acala-polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + }, + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://acala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "additional": { + "feeViaRuntimeCall": true + }, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": [ + "parachain" + ], + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "banxa": { + "coinType": "GLMR", + "blockchain": "GLMR" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 11, + "symbol": "xcCFG", + "precision": 18, + "type": "statemine", + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "assetId": "91372035960551235635465443179559840483" + } + }, + { + "assetId": 12, + "symbol": "xcBNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "165823357460190568952172802245839421906" + } + }, + { + "assetId": 13, + "symbol": "xcEQ", + "precision": 9, + "type": "statemine", + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "assetId": "190590555344745888270686124937537713878" + } + }, + { + "assetId": 14, + "symbol": "xcEQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "187224307232923873519830480073807488153" + } + }, + { + "assetId": 15, + "symbol": "xcHDX", + "precision": 12, + "type": "statemine", + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "typeExtras": { + "assetId": "69606720909260275826784788104880799692" + } + }, + { + "assetId": 16, + "symbol": "xcNODL", + "precision": 11, + "type": "statemine", + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "assetId": "309163521958167876851250718453738106865" + } + }, + { + "assetId": 17, + "symbol": "xcRING", + "precision": 18, + "type": "statemine", + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg", + "typeExtras": { + "assetId": "125699734534028342599692732320197985871" + } + }, + { + "assetId": 18, + "symbol": "xcOTP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", + "typeExtras": { + "assetId": "238111524681612888331172110363070489924" + } + }, + { + "assetId": 19, + "symbol": "xcvDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "29085784439601774464560083082574142143" + } + }, + { + "assetId": 20, + "symbol": "xcvFIL", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "assetId": "272547899416482196831721420898811311297" + } + }, + { + "assetId": 21, + "symbol": "xcvGLMR", + "precision": 18, + "priceId": "voucher-glmr", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "assetId": "204507659831918931608354793288110796652" + } + }, + { + "assetId": 22, + "symbol": "xcMANTA", + "precision": 18, + "type": "statemine", + "priceId": "manta-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "typeExtras": { + "assetId": "166446646689194205559791995948102903873" + } + }, + { + "assetId": 23, + "symbol": "xcUSDC", + "precision": 6, + "type": "statemine", + "priceId": "usd-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "166377000701797186346254371275954761085" + } + + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}" + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance", + "proxy" + ], + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/moonbeam-glmr-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ETHEREUM" + }, + "mercuryo": { + "network": "ETHEREUM" + }, + "banxa": { + "coinType": "ETH", + "blockchain": "ETH" + } + } + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://eth.llamarpc.com", + "name": "llamanodes rpc node" + }, + { + "url": "https://eth-pokt.nodies.app", + "name": "Pokt network rpc node" + }, + { + "url": "https://rpc.ankr.com/eth", + "name": "Ankr rpc node" + }, + { + "url": "https://eth-mainnet.public.blastapi.io", + "name": "Blast rpc node" + }, + { + "url": "https://api.securerpc.com/v1", + "name": "Secure rpc node" + }, + { + "url": "https://1rpc.io/eth", + "name": "One rpc node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 2" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe", + "name": "Infura node 4" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6582132" + } + }, + { + "assetId": 2, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "6648164" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://equilibrium.subscan.io/extrinsic/{hash}", + "account": "https://equilibrium.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + }, + "banxa": { + "coinType": "ASTR", + "blockchain": "ASTR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aSEED", + "precision": 12, + "type": "statemine", + "priceId": "ausd-seed-acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + }, + { + "assetId": 10, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 11, + "symbol": "UNQ", + "precision": 18, + "type": "statemine", + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "assetId": "18446744073709551631" + } + }, + { + "assetId": 12, + "symbol": "vDOT", + "precision": 10, + "type": "statemine", + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 13, + "symbol": "EQD", + "precision": 9, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "assetId": "18446744073709551629" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://parallel-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + }, + { + "assetId": 2, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "assetId": "1337" + } + }, + { + "assetId": 3, + "symbol": "DED", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "typeExtras": { + "assetId": "30" + } + }, + { + "assetId": 4, + "symbol": "PINK", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "assetId": "23" + } + }, + { + "assetId": 5, + "symbol": "DOTA", + "precision": 4, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOTA.svg", + "typeExtras": { + "assetId": "18" + } + }, + { + "assetId": 6, + "symbol": "STINK", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STINK.svg", + "typeExtras": { + "assetId": "42069" + } + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/statemint", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/statemint", + "name": "Dotters Net node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://assethub-polkadot.subscan.io/account/{address}", + "extrinsic": "https://assethub-polkadot.subscan.io/extrinsic/{hash}" + }, + { + "name": "Statescan", + "account": "https://statemint.statescan.io/#/accounts/{address}", + "event": "https://statemint.statescan.io/#/events/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Asset_Hub.svg", + "addressPrefix": 0, + "options": [ + "swap-hub" + ], + "additional": { + "relaychainAsNative": true, + "feeViaRuntimeCall": true + } + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.0xsamsara.com", + "name": "Samsara node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/encointer-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/encointer-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "priceId": "picasso", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": [ + "parachain" + ], + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0500000000", + "currencyIdType": "zeitgeist_primitives.asset.Asset", + "existentialDeposit": "10000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://zeitgeist.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/zeitgeist-ztg-staking" + } + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://centrifuge-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://centrifuge-parachain.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", + "buyProviders": { + "banxa": { + "coinType": "HDX", + "blockchain": "HDX" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI-Acala", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Acala.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-Acala", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-Acala", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0b000000", + "currencyIdType": "u32", + "existentialDeposit": "36", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "ZTG", + "precision": 10, + "priceId": "zeitgeist", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "typeExtras": { + "currencyIdScale": "0x0c000000", + "currencyIdType": "u32", + "existentialDeposit": "1204151916", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x09000000", + "currencyIdType": "u32", + "existentialDeposit": "147058823529412000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0a000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "typeExtras": { + "currencyIdScale": "0x0d000000", + "currencyIdType": "u32", + "existentialDeposit": "32467532467532500", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "68795189840", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "DAI-Moonbeam", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x12000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "WBTC-Moonbeam", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x13000000", + "currencyIdType": "u32", + "existentialDeposit": "34", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "WETH-Moonbeam", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x14000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "USDC", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x16000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "34854864344868000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x11000000", + "currencyIdType": "u32", + "existentialDeposit": "6164274209", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "SUB", + "precision": 10, + "priceId": "subsocial", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x18000000", + "currencyIdType": "u32", + "existentialDeposit": "20000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "18761726", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x08000000", + "currencyIdType": "u32", + "existentialDeposit": "54945054945", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "USDC-Moonbeam", + "precision": 6, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x15000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "4-Pool", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/4-Pool.svg", + "typeExtras": { + "currencyIdScale": "0x64000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "2-Pool", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/2-Pool.svg", + "typeExtras": { + "currencyIdScale": "0x65000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "2-Pool-Stbl", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/2-Pool-Stbl.svg", + "typeExtras": { + "currencyIdScale": "0x66000000", + "currencyIdType": "u32", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", + "typeExtras": { + "currencyIdScale": "0x19000000", + "currencyIdType": "u32", + "existentialDeposit": "1224384348939740000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "109890109890", + "transfersEnabled": true + } + }, + { + "assetId": 27, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg", + "typeExtras": { + "currencyIdScale": "0x1b000000", + "currencyIdType": "u32", + "existentialDeposit": "7874015748", + "transfersEnabled": true + } + }, + { + "assetId": 28, + "symbol": "USDT-Moonbeam", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT-Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x17000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 29, + "symbol": "DED", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "typeExtras": { + "currencyIdScale": "0x53420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 30, + "symbol": "PINK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "currencyIdScale": "0x55420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 31, + "symbol": "STINK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/STINK.svg", + "typeExtras": { + "currencyIdScale": "0x62420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + }, + { + "assetId": 32, + "symbol": "DOTA", + "precision": 4, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOTA.svg", + "typeExtras": { + "currencyIdScale": "0x66420f00", + "currencyIdType": "u32", + "existentialDeposit": "1", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra__bm92Y" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1", + "hydradx-swaps" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + }, + "buyProviders": { + "banxa": { + "coinType": "INTR", + "blockchain": "INTR" + } + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 14, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x010b000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc-interlay.luckyfriday.io/", + "name": "LuckyFriday node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://phala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://phala.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + }, + { + "url": "wss://phala.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://phala.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aSEED", + "precision": 12, + "priceId": "ausd-seed-karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://turing.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#14B1D3", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/turing-tur-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "buyProviders": { + "transak": { + "network": "ALEPHZERO" + }, + "banxa": { + "coinType": "AZERO", + "blockchain": "AZERO" + } + } + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/aleph-zero-azero-staking", + "defaultBlockTime": 1000 + }, + "options": [ + "fullSyncByDefault", + "pushSupport" + ] + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LAYR.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x06000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "21430000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x04000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "375000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x82000000000000000000000000000000", + "currencyIdType": "u128", + "existentialDeposit": "1500", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.svg", + "addressPrefix": 50, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": [ + "relaychain" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 12, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "95930534000017180603917534864279132680" + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 12, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "3496813586714279103986568049643838918" + } + }, + { + "assetId": 3, + "symbol": "ASTR", + "precision": 12, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "222121451965151777636299756141619631150" + } + }, + { + "assetId": 4, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "assetId": "193492391581201937291053139015355410612" + } + }, + { + "assetId": 5, + "symbol": "iBTC", + "precision": 12, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "226557799181424065994173367616174607641" + } + }, + { + "assetId": 6, + "symbol": "DED", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DED.svg", + "typeExtras": { + "assetId": "119367686984583275840673742485354142551" + } + }, + { + "assetId": 7, + "symbol": "PINK", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PINK.svg", + "typeExtras": { + "assetId": "339306133874233608313826294843504252047" + } + }, + { + "assetId": 8, + "symbol": "GLMR", + "precision": 12, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "182269558229932594457975666948556356791" + } + } + ], + "nodes": [ + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://polkadex.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polkadex-pdex-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "NeuroWeb", + "assets": [ + { + "assetId": 0, + "symbol": "NEURO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEURO.svg" + }, + { + "assetId": 1, + "symbol": "TRAC", + "precision": 18, + "priceId": "origintrail", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TRAC.svg", + "typeExtras": { + "assetId": "1" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + }, + { + "url": "wss://origintrail-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://neuroweb.subscan.io/account/{address}", + "extrinsic": "https://neuroweb.subscan.io/extrinsic/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/NeuroWeb.svg", + "addressPrefix": 101, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "buyProviders": { + "banxa": { + "coinType": "BNC", + "blockchain": "BNCPOLKA" + } + } + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0802", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x0803", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "vDOT", + "precision": 10, + "priceId": "voucher-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0900", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vGLMR", + "precision": 18, + "priceId": "voucher-glmr", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vGLMR.svg", + "typeExtras": { + "currencyIdScale": "0x0901", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vFIL", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vFIL.svg", + "typeExtras": { + "currencyIdScale": "0x0904", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vASTR", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vASTR.svg", + "typeExtras": { + "currencyIdScale": "0x0903", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "vsDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0a00", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "MANTA", + "precision": 18, + "priceId": "manta-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "typeExtras": { + "currencyIdScale": "0x0808", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "vMANTA", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vMANTA.svg", + "typeExtras": { + "currencyIdScale": "0x0908", + "currencyIdType": "bifrost_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://bifrost.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://litentry.statescan.io/#/accounts/{address}", + "extrinsic": "https://litentry.statescan.io/#/extrinsics/{hash}", + "event": "https://litentry.statescan.io/#/events/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "priceId": "mangata-x", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TUR", + "precision": 10, + "priceId": "turing-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "RMRK (old)", + "precision": 10, + "priceId": "rmrk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x1a000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "vsKSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "vKSM", + "precision": 12, + "priceId": "voucher-ksm", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0f000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://kusama-rpc.mangata.online", + "name": "Mangata node" + }, + { + "url": "wss://kusama-archive.mangata.online", + "name": "Mangata archive node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": [ + "aleph-zero", + "nomination-pools" + ], + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", + "buyProviders": { + "banxa": { + "coinType": "BAJU", + "blockchain": "BAJU" + } + } + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.imbuenetwork.com", + "name": "Imbue node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "77afd6190f1554ad45fd0d31aee62aacc33c6db0ea801129acb813f913e0764f", + "name": "Paseo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "PAS", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/paseo", + "name": "IBP-GeoDNS1" + }, + { + "url": "wss://rpc.dotters.network/paseo", + "name": "IBP-GeoDNS2" + } + ], + "explorers": [ + { + "name": "Subscan", + "account": "https://paseo.subscan.io/account/{address}", + "extrinsic": "https://paseo.subscan.io/extrinsic/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Paseo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans", + "proxy" + ] + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans", + "proxy" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinkernet-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDC.s", + "precision": 12, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x0201555344433b9911380efe988ba0a8900eb1cfe44f366f7dbe946bed077240f7f624df15c5", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "XLM.s", + "precision": 12, + "priceId": "spacewalk-xlm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XLM.svg", + "typeExtras": { + "currencyIdScale": "0x0200", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "TZS.s", + "precision": 12, + "priceId": "spacewalk-tzs", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TZS.svg", + "typeExtras": { + "currencyIdScale": "0x0201545a530034c94b2a4ba9e8b57b22547dcbb30f443c4cb02da3829a89aa1bd4780e4466ba", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "BRL.s", + "precision": 12, + "priceId": "spacewalk-brl", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BRL.svg", + "typeExtras": { + "currencyIdScale": "0x020142524c00eaac68d4d0e37b4c24c2536916e830735f032d0d6b2a1c8fca3bc5a25e083e3a", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "AUDD.s", + "precision": 12, + "priceId": "spacewalk-audd", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUDD.svg", + "typeExtras": { + "currencyIdScale": "0x020141554444c5fbe9979e240552860221f4fe2f2219f35e40458b8b58fc32da520a154a561d", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "EURC.s", + "precision": 12, + "priceId": "spacewalk-eurc", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EUR.svg", + "typeExtras": { + "currencyIdScale": "0x0201455552432112ee863867e4e219fe254c0918b00bc9ea400775bfc3ab4430971ce505877c", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "NGNC.s", + "precision": 12, + "priceId": "spacewalk-ngnc", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NGN.svg", + "typeExtras": { + "currencyIdScale": "0x02014e474e43241afadf31883f79972545fc64f3b5b0c95704c6fb4917474e42b0057841606b", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0106", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg", + "buyProviders": { + "banxa": { + "coinType": "CAPS", + "blockchain": "TERNOA" + } + } + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/ternoa-caps-staking", + "feeViaRuntimeCall": true + } + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": [ + "relaychain" + ], + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": [ + "turing" + ], + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "account": "https://gov2.statescan.io/#/accounts/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "KPX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://kapex-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polymesh" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12, + "additional": { + "themeColor": "#EB2B6C", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "eb9f47779a9f5033c160c03511b5e4c1b2869210d7bc78a6ad7d0f28897455a7", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "staking": [ + "relaychain", + "nomination-pools" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/stepanLav/novasama-test-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/stepanLav/novasama-test-kusama" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/stepanLav/novasama-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance", + "governance-v1", + "proxy", + "pushSupport" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-myriad" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}" + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0101", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "USDC.s", + "precision": 12, + "priceId": "usd-coin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDC.svg", + "typeExtras": { + "currencyIdScale": "0x0201555344433b9911380efe988ba0a8900eb1cfe44f366f7dbe946bed077240f7f624df15c5", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "XLM.s", + "precision": 12, + "priceId": "spacewalk-xlm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XLM.svg", + "typeExtras": { + "currencyIdScale": "0x0200", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "TZS.s", + "precision": 12, + "priceId": "spacewalk-tzs", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TZS.svg", + "typeExtras": { + "currencyIdScale": "0x0201545a530034c94b2a4ba9e8b57b22547dcbb30f443c4cb02da3829a89aa1bd4780e4466ba", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "BRL.s", + "precision": 12, + "priceId": "spacewalk-brl", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BRL.svg", + "typeExtras": { + "currencyIdScale": "0x020142524c00eaac68d4d0e37b4c24c2536916e830735f032d0d6b2a1c8fca3bc5a25e083e3a", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "AUDD.s", + "precision": 12, + "priceId": "spacewalk-audd", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUDD.svg", + "typeExtras": { + "currencyIdScale": "0x020141554444c5fbe9979e240552860221f4fe2f2219f35e40458b8b58fc32da520a154a561d", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "EURC.s", + "precision": 12, + "priceId": "spacewalk-eurc", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EUR.svg", + "typeExtras": { + "currencyIdScale": "0x0201455552432112ee863867e4e219fe254c0918b00bc9ea400775bfc3ab4430971ce505877c", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "NGNC.s", + "precision": 12, + "priceId": "spacewalk-ngnc", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NGN.svg", + "typeExtras": { + "currencyIdScale": "0x02014e474e43241afadf31883f79972545fc64f3b5b0c95704c6fb4917474e42b0057841606b", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0106", + "currencyIdType": "spacewalk_primitives.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aventus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crust" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aSEED", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/aSEED.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "LP KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "LP kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "qkBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c3.hashed.live", + "name": "Hashed systems 3 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hashed-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "explorers": [ + { + "name": "SCAN", + "account": "https://bittensor.com/scan/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bittensor" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "priceId": "3dpass", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.3dpscan.io", + "name": "3DPass node" + }, + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-3dpass" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---ajuna" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + }, + { + "chainId": "f0b8924b12e8108550d28870bc03f7b45a947e1b2b9abf81bfb0b89ecb60570e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + }, + { + "assetId": 1, + "symbol": "KTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://rpc.darwinia.network", + "name": "Darwinia node" + }, + { + "url": "wss://darwinia-rpc.darwiniacommunitydao.xyz", + "name": "Darwinia Community node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia.subscan.io/extrinsic/{hash}", + "account": "https://darwinia.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "86e49c195aeae7c5c4a86ced251f1a28c67b3c35d8289c387ede1776cdd88b24", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + }, + { + "assetId": 1, + "symbol": "CKTON", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CKTON.svg", + "typeExtras": { + "assetId": "1026" + } + } + ], + "nodes": [ + { + "url": "wss://crab-rpc.darwinia.network/", + "name": "Darwinia node" + }, + { + "url": "wss://darwiniacrab-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crab-rpc.darwiniacommunitydao.xyz", + "name": "Community node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42, + "options": [ + "ethereumBased" + ] + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Frequency", + "assets": [ + { + "assetId": 0, + "symbol": "FRQCY", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FRQCY.svg" + } + ], + "nodes": [ + { + "url": "wss://0.rpc.frequency.xyz", + "name": "Frequency0 node" + }, + { + "url": "wss://1.rpc.frequency.xyz", + "name": "Frequency1 node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/frequency" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Frequency.svg", + "addressPrefix": 90 + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "assets": [ + { + "assetId": 0, + "symbol": "VARA", + "precision": 12, + "priceId": "vara-network", + "staking": [ + "relaychain", + "nomination-pools" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.vara-network.io", + "name": "Gear Tech node" + } + ], + "explorers": [ + { + "name": "Varascan", + "account": "https://explorer.vara-network.io/account/{address}", + "event": "https://explorer.vara-network.io/event/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---vara" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara.svg", + "addressPrefix": 137, + "additional": { + "themeColor": "#10B6B1", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/parachains-and-solochains" + } + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-anchor-1-giant-mainnet-ue1.giantprotocol.org:443", + "name": "Anchor node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---giant" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant.svg", + "addressPrefix": 42, + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "eip155:97", + "name": "BNB Smart Chain Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://data-seed-prebsc-1-s1.binance.org:8545", + "name": "BSC testnet node 1" + }, + { + "url": "https://data-seed-prebsc-2-s1.binance.org:8545", + "name": "BSC testnet node 2" + }, + { + "url": "https://data-seed-prebsc-1-s2.binance.org:8545", + "name": "BSC testnet node 1s2" + }, + { + "url": "https://data-seed-prebsc-2-s2.binance.org:8545", + "name": "BSC testnet node 2s2" + }, + { + "url": "https://data-seed-prebsc-1-s3.binance.org:8545", + "name": "BSC testnet node 1s3" + }, + { + "url": "https://data-seed-prebsc-2-s3.binance.org:8545", + "name": "BSC testnet node 2s3" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock http testnet node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/testnet/", + "name": "Getblock wss testnet node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/testnet/", + "name": "GetBlock wss testnet node" + } + ], + "explorers": [ + { + "name": "Testnet BscScan", + "extrinsic": "https://testnet.bscscan.com/tx/{hash}", + "account": "https://testnet.bscscan.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-testnet.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSCTestnet.svg", + "addressPrefix": 97, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:56", + "name": "BNB Smart Chain", + "assets": [ + { + "assetId": 0, + "symbol": "BNB", + "priceId": "binancecoin", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BNB.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://bsc-dataseed.binance.org", + "name": "BSC node 1" + }, + { + "url": "https://bsc-dataseed1.defibit.io", + "name": "BSC node 2" + }, + { + "url": "https://bsc-dataseed1.ninicoin.io", + "name": "BSC node 3" + }, + { + "url": "https://bsc.nodereal.io", + "name": "BSC node 4" + }, + { + "url": "https://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock http node" + }, + { + "url": "wss://bsc.getblock.io/7239ce92-e8ac-4ada-8685-6c0a083b8254/mainnet/", + "name": "GetBlock wss node" + }, + { + "url": "wss://bsc.getblock.io/62f28655-8038-43cc-abca-7d1fb47d7d97/mainnet/", + "name": "GetBlock wss node" + } + ], + "explorers": [ + { + "name": "BscScan", + "extrinsic": "https://bscscan.com/tx/{hash}", + "account": "https://bscscan.com/address/{address}" + }, + { + "name": "Bitquery", + "extrinsic": "https://explorer.bitquery.io/bsc/tx/{hash}", + "account": "https://explorer.bitquery.io/bsc/address/{address}" + }, + { + "name": "BSCTrace", + "extrinsic": "https://bsctrace.com/tx/{hash}", + "account": "https://bsctrace.com/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.bscscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BSC.svg", + "addressPrefix": 56, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "c9824829d23066e7dd92b80cfef52559c7692866fcfc3530e737e3fe01410eef", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "GIANT Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "GIANT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Giant.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-4-us-east-1-dev.giantprotocol.org:443", + "name": "Giant testnet node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Giant_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-bridgehub" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Bridge_Hub.svg", + "addressPrefix": 0 + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/bridgehub-kusama", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://ksm-rpc.stakeworld.io/bridgehub", + "name": "Stakeworld node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---kusama-bridgehub" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama_Bridge_Hub.svg", + "addressPrefix": 2 + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot Collectives", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + } + ], + "nodes": [ + { + "url": "wss://sys.ibp.network/collectives-polkadot", + "name": "IBP network node" + }, + { + "url": "wss://sys.dotters.network/collectives-polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://collectives.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://dot-rpc.stakeworld.io/collectives", + "name": "Stakeworld node" + }, + { + "url": "wss://collectives.api.onfinality.io/public-ws", + "name": "Onfinality node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/polkadot-collectives" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot_Collectives.svg", + "addressPrefix": 0 + }, + { + "chainId": "67221cd96c1551b72d55f65164d6a39f31b570c77a05c90e31931b0e2f379e13", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude Foucoco", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-foucoco.pendulumchain.tech/", + "name": "PendulumChain node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude_foucoco.svg", + "addressPrefix": 57, + "options": [ + "testnet" + ] + }, + { + "chainId": "418ae94c9fce02b1ab3b5bc211cd2f2133426f2861d97482bbdfdac1bbb0fb92", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "LP iBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/iBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300010102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 9, + "symbol": "LP DOT-iBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOT-iBTC.svg", + "typeExtras": { + "currencyIdScale": "0x0300000001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 10, + "symbol": "LP INTR-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/INTR-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0300020102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 11, + "symbol": "qiBTC", + "precision": 8, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0201000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 12, + "symbol": "qUSDT", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0203000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 13, + "symbol": "qDOT", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0202000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-testnet.interlay.io:443/parachain", + "name": "Kintsugi Labs node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay_Testnet.svg", + "addressPrefix": 2032, + "options": [ + "testnet" + ] + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "krest", + "assets": [ + { + "assetId": 0, + "symbol": "KREST", + "precision": 18, + "priceId": "krest", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KREST.svg" + } + ], + "nodes": [ + { + "url": "wss://wss-krest.peaq.network", + "name": "Krest node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://krest.subscan.io/extrinsic/{hash}", + "account": "https://krest.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---krest" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "addressPrefix": 42 + }, + { + "chainId": "58d1393b47b11707978fbc07e77d7b6f7d9aa88d207dc008a52385f7dba6156a", + "name": "Jur (PAUSED)", + "assets": [ + { + "assetId": 0, + "symbol": "JUR", + "precision": 18, + "priceId": "jur", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JUR.svg" + } + ], + "nodes": [ + { + "url": "wss://jur-mainnet-archive-rpc-1.icebergnodes.io", + "name": "Iceberg node" + }, + { + "url": "wss://jur-archive-mainnet-1.simplystaking.xyz/VX68C07AR4K2/ws", + "name": "Simplystaking node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---jur" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Jur.svg", + "addressPrefix": 42 + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Manta Atlantic", + "assets": [ + { + "assetId": 0, + "symbol": "MANTA", + "precision": 18, + "priceId": "manta-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MANTA.svg", + "staking": [ + "parachain" + ] + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "8" + } + } + ], + "nodes": [ + { + "url": "wss://ws.manta.systems", + "name": "Manta node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---manta" + } + ] + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://manta.subscan.io/extrinsic/{hash}", + "account": "https://manta.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 77, + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/manta-manta-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "9b86ea7366584c5ddf67de243433fcc05732864933258de9467db46eb9bef8b5", + "name": "Vara Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TVARA", + "precision": 12, + "staking": [ + "relaychain" + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARA.svg" + } + ], + "nodes": [ + { + "url": "wss://vit.vara-network.io", + "name": "Gear Tech test node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Vara_Testnet.svg", + "addressPrefix": 137, + "options": [ + "testnet" + ] + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin Matrix", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.matrix.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-matrix-rpc-1.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://matrix.subscan.io/extrinsic/{hash}", + "account": "https://matrix.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/enjin-matrixchain" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "eip155:246", + "name": "Energy Web Chain", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://consortia-rpc.energyweb.org", + "name": "Public EWC http node" + }, + { + "url": "https://rpc.energyweb.org", + "name": "Energy web http node" + }, + { + "url": "https://archive-rpc.energyweb.org", + "name": "Archive http node" + }, + { + "url": "wss://rpc.energyweb.org/ws", + "name": "Energy web wss node" + } + ], + "explorers": [ + { + "name": "Energy Web Explorer", + "extrinsic": "https://explorer.energyweb.org/tx/{hash}", + "account": "https://explorer.energyweb.org/address/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.energyweb.org/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "addressPrefix": 246, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:592", + "name": "Astar EVM", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "https://astar.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "https://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 592, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2031", + "name": "Centrifuge EVM", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "priceId": "centrifuge", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Fullnode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 2031, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "7c34d42fc815d392057c78b49f2755c753440ccd38bcb0405b3bcfb601d08734", + "parentId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Asset Hub", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + }, + { + "assetId": 1, + "symbol": "HOP", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "0x010100b11c", + "palletName": "ForeignAssets" + } + } + ], + "nodes": [ + { + "url": "wss://rococo-asset-hub-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rococo-asset-hub-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://assethub-rococo.subscan.io/extrinsic/{hash}", + "account": "https://assethub-rococo.subscan.io/account/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---westmint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AssetHub_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "swap-hub" + ], + "additional": { + "relaychainAsNative": true + } + }, + { + "chainId": "eip155:595", + "name": "Acala Mandala TC9", + "assets": [ + { + "assetId": 0, + "symbol": "mACA", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://eth-rpc-tc9.aca-staging.network", + "name": "wss node" + }, + { + "url": "https://eth-rpc-tc9.aca-staging.network", + "name": "http node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 595, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6ab1bd8aed6d5fdcaf347826bfcd0172681181edf8356b90cb3cf47076698ae2", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "EWX Staging Parachain Argon", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://ewx-staging-parachain-argon-wmfbanx0xb.energyweb.org/ws", + "name": "EWX node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Watr", + "assets": [ + { + "assetId": 0, + "symbol": "WATR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WATR.svg" + } + ], + "nodes": [ + { + "url": "wss://watr-rpc.watr-api.network", + "name": "EWX node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Watr.svg", + "addressPrefix": 19 + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "assets": [ + { + "assetId": 0, + "symbol": "JOY", + "priceId": "joystream", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/JOY.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.joystream.org", + "name": "Jsgenesis node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://joystream.subscan.io/extrinsic/{hash}", + "account": "https://joystream.subscan.io/account/{address}" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---joystream" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Joystream.svg", + "addressPrefix": 126 + }, + { + "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", + "name": "Dock", + "assets": [ + { + "assetId": 0, + "symbol": "DOCK", + "priceId": "dock", + "precision": 6, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DOCK.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://mainnet-node.dock.io", + "name": "Dock Association node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://dock.subscan.io/extrinsic/{hash}", + "account": "https://dock.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Dock.svg", + "addressPrefix": 22 + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polimec", + "assets": [ + { + "assetId": 0, + "symbol": "PLMC", + "priceId": "polimec", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg", + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.polimec.org", + "name": "Polimec node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://polimec.statescan.io/#/accounts/{address}", + "event": "https://polimec.statescan.io/#/events/{event}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---polymec" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---polymec" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec.svg", + "addressPrefix": 41, + "additional": { + "themeColor": "#96CC5A", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polimec-plmc-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Energy Web X", + "assets": [ + { + "assetId": 0, + "symbol": "EWT", + "priceId": "energy-web-token", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.energywebx.com/", + "name": "Energywebx node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---energy-web-x" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_X.svg", + "addressPrefix": 42 + }, + { + "chainId": "ac123be800b7c9a3e3449bb70edd8e3d9008d27826381451eebf94bce1db1fbe", + "name": "Energy Web X Rococo", + "assets": [ + { + "assetId": 0, + "symbol": "VT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EWT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.testnet.energywebx.com", + "name": "Energy Web X Rococo node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ], + "additional": { + "feeViaRuntimeCall": true + } + }, + { + "chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "InvArch", + "assets": [ + { + "assetId": 0, + "symbol": "VARCH", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/VARCH.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet---invarch" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg", + "addressPrefix": 117 + }, + { + "chainId": "8b404e7ed8789d813982b9cb4c8b664c05b3fbf433309f603af014ec9ce56a8c", + "name": "Crust", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "priceId": "crust-network", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.crust.network", + "name": "Crust node" + }, + { + "url": "wss://crust-mainnet-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://crust.api.onfinality.io/public-ws", + "name": "OnFinallity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust.subscan.io/extrinsic/{hash}", + "account": "https://crust.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust.svg", + "addressPrefix": 66 + }, + { + "chainId": "eip155:169", + "name": "Manta Pacific", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "https://pacific-rpc.manta.network/http", + "name": "Manta rpc 1 node" + }, + { + "url": "https://1rpc.io/manta", + "name": "Manta rpc 2 node" + }, + { + "url": "wss://pacific-rpc.manta.network/ws", + "name": "Manta wss node" + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://pacific-explorer.manta.network/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "explorers": [ + { + "name": "Manta Pacific Block Explorer", + "extrinsic": "https://pacific-explorer.manta.network/tx/{hash}", + "account": "https://pacific-explorer.manta.network/address/{address}" + }, + { + "name": "Manta Socialscan", + "extrinsic": "https://manta.socialscan.io/tx/{hash}", + "account": "https://manta.socialscan.io/address/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", + "addressPrefix": 169, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "0441383e31d1266a92b4cb2ddd4c2e3661ac476996db7e5844c52433b81fe782", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend Bridge Hub", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + } + ], + "nodes": [ + { + "url": "wss://westend-bridge-hub-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://westend-bridge-hub-rpc-tn.dwellir.com", + "name": "Dwellir Tunisia node" + }, + { + "url": "wss://sys.ibp.network/bridgehub-westend", + "name": "IBP-GeoDNS1 node" + }, + { + "url": "wss://sys.dotters.network/bridgehub-westend", + "name": "IBP-GeoDNS2 node" + }, + { + "url": "wss://westend-bridge-hub-rpc.polkadot.io", + "name": "Parity node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/BridgeHub_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "7bbb72faf3d6d997ebe622a4e0ebfb6fdacf905b6141c86a3122cd479213a8d8", + "name": "Rolimec Rococo", + "assets": [ + { + "assetId": 0, + "symbol": "RLMC", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PLMC.svg", + "staking": [ + "parachain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.rolimec.org", + "name": "Rolimec node" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polimec_Testnet.svg", + "addressPrefix": 41, + "options": [ + "testnet" + ], + "additional": { + "themeColor": "#1F78FF", + "stakingWiki": "https://docs.novawallet.io/nova-wallet-wiki/staking/polimec-plmc-staking", + "defaultBlockTime": 12000 + } + }, + { + "chainId": "ae1ca86c936aa252cdc45f4f436220567b2bbbcc4834f5b8f4191462baf19dfb", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Continuum", + "assets": [ + { + "assetId": 0, + "symbol": "NUUM", + "priceId": "mnet-continuum", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NUUM.svg" + } + ], + "nodes": [ + { + "url": "wss://continuum-rpc-1.metaverse.network/wss", + "name": "MNet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://continuum.subscan.io/extrinsic/{hash}", + "account": "https://continuum.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Continuum.svg", + "addressPrefix": 268 + }, + { + "chainId": "d8761d3c88f26dc12875c00d3165f7d67243d56fc85b4cf19937601a7916e5a9", + "name": "Enjin Relay", + "assets": [ + { + "assetId": 0, + "symbol": "ENJ", + "precision": 18, + "priceId": "enjincoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ENJ.svg", + "staking": [ + "relaychain" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc.relay.blockchain.enjin.io", + "name": "Enjin node" + }, + { + "url": "wss://enjin-relay-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://enjin.subscan.io/extrinsic/{hash}", + "account": "https://enjin.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Enjin.svg", + "addressPrefix": 2135 + }, + { + "chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Curio", + "assets": [ + { + "assetId": 0, + "symbol": "CGT", + "precision": 18, + "priceId": "curio-governance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CGT.svg" + } + ], + "nodes": [ + { + "url": "wss://archive.parachain.curioinvest.com", + "name": "Curio node" + }, + { + "url": "wss://parachain.curioinvest.com/", + "name": "Curio node 2" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Curio.svg", + "addressPrefix": 777 + }, + { + "chainId": "6f09966420b2608d1947ccfb0f2a362450d1fc7fd902c29b67c906eaa965a7ae", + "name": "Avail Goldberg Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVL", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVL.svg", + "staking": [ + "relaychain", + "nomination-pools" + ] + } + ], + "nodes": [ + { + "url": "wss://rpc-testnet.avail.tools/ws", + "name": "Avail Tool Testnet" + }, + { + "url": "wss://goldberg-testnet-rpc.avail.tools/ws", + "name": "Goldberg testnet" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://avail-testnet.subscan.io/extrinsic/{hash}", + "account": "https://avail-testnet.subscan.io/account/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Avail_Testnet.svg", + "addressPrefix": 42 + } +] diff --git a/chains/v2/chains.json b/chains/v2/chains.json index 72bca2552..06b3483df 100644 --- a/chains/v2/chains.json +++ b/chains/v2/chains.json @@ -51,10 +51,10 @@ } ], "color": "linear-gradient(315deg, #D43079 0%, #F93C90 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", "overridesCommon": true }, "externalApi": { @@ -68,7 +68,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" } }, "options": [ @@ -126,10 +126,10 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", "overridesCommon": true }, "externalApi": { @@ -143,7 +143,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -188,10 +188,10 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", "overridesCommon": true }, "externalApi": { @@ -205,7 +205,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -222,7 +222,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama" }, { @@ -231,7 +231,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "8" } @@ -241,7 +241,7 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHAOS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", "typeExtras": { "assetId": "69420" } @@ -251,7 +251,7 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", "typeExtras": { "assetId": "567" } @@ -261,7 +261,7 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "88888" } @@ -271,7 +271,7 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", "typeExtras": { "assetId": "223" } @@ -281,7 +281,7 @@ "symbol": "ARIS", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "assetId": "16" } @@ -292,7 +292,7 @@ "precision": 4, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "11" } @@ -331,7 +331,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -341,7 +341,7 @@ } }, "color": "linear-gradient(315deg, #1C3816 0%, #4F6B49 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -359,7 +359,7 @@ "assetId": 1, "symbol": "kUSD", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KUSD.svg", "priceId": "tether", "type": "orml", "typeExtras": { @@ -373,7 +373,7 @@ "assetId": 2, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -388,7 +388,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x050000", @@ -402,7 +402,7 @@ "symbol": "BNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "priceId": "bifrost-native-coin", "typeExtras": { "currencyIdScale": "0x00a8", @@ -416,7 +416,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -430,7 +430,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -444,7 +444,7 @@ "precision": 12, "priceId": "kintsugi", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -458,7 +458,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -471,7 +471,7 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAI.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -484,7 +484,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -497,7 +497,7 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -511,7 +511,7 @@ "precision": 18, "priceId": "quartz", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -524,7 +524,7 @@ "symbol": "ARIS", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -538,7 +538,7 @@ "precision": 18, "priceId": "moonriver", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -551,7 +551,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -565,7 +565,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crust.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crust.svg", "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -579,7 +579,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -615,7 +615,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -637,7 +637,7 @@ } }, "color": "linear-gradient(315.17deg, #E40C5B 0%, #FF4C3B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -676,7 +676,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbeam.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", "overridesCommon": true }, "externalApi": { @@ -686,7 +686,7 @@ } }, "color": "linear-gradient(135deg, #53CBC8 0%, #11807D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -714,7 +714,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "182365888117048807484804376330534607370" } @@ -725,7 +725,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -736,7 +736,7 @@ "precision": 12, "priceId": "kintsugi", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "assetId": "175400718394635817552109270754364440562" } @@ -747,7 +747,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "10810581592933651521121702237638664357" } @@ -758,7 +758,7 @@ "precision": 12, "priceId": "bifrost-native-coin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "319623561105283008236062145480775032445" } @@ -769,7 +769,7 @@ "precision": 8, "priceId": "bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "assetId": "328179947973504579459046439826496046832" } @@ -802,7 +802,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", "overridesCommon": true }, "externalApi": { @@ -812,7 +812,7 @@ } }, "color": "linear-gradient(135deg, #F2A007 19.29%, #A56B00 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -859,10 +859,10 @@ } }, "color": "linear-gradient(135deg, #987ED9 0%, #5132AA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/shiden.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", "overridesCommon": true } }, @@ -881,7 +881,7 @@ "assetId": 1, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -896,7 +896,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x0209", @@ -911,7 +911,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -925,7 +925,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -939,7 +939,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KUSD.svg", "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -952,7 +952,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -976,7 +976,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -998,7 +998,7 @@ } }, "color": "linear-gradient(135deg, #12D5D5 0%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -1029,7 +1029,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/basilisk.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", "overridesCommon": true }, "externalApi": { @@ -1039,7 +1039,7 @@ } }, "color": "linear-gradient(315deg, #5B892B 0%, #97D92D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "addressPrefix": 10041 }, { @@ -1083,11 +1083,11 @@ } }, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/altair.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #A37539 0%, #F5B840 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "addressPrefix": 136 }, { @@ -1099,7 +1099,7 @@ "assetId": 0, "symbol": "HKO", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg" }, { "assetId": 1, @@ -1107,7 +1107,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "100" } @@ -1117,7 +1117,7 @@ "symbol": "kUSD", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KUSD.svg", "typeExtras": { "assetId": "103" } @@ -1127,7 +1127,7 @@ "symbol": "LKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "109" } @@ -1137,7 +1137,7 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "1000" } @@ -1148,7 +1148,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "107" } @@ -1165,7 +1165,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel_heiko.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", "overridesCommon": true }, "explorers": [ @@ -1183,7 +1183,7 @@ } }, "color": "linear-gradient(315deg, #3A55F5 8%, #04E2FF 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -1212,7 +1212,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, "explorers": [ @@ -1228,7 +1228,7 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -1266,7 +1266,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/khala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", "overridesCommon": true }, "externalApi": { @@ -1276,7 +1276,7 @@ } }, "color": "linear-gradient(315deg, #0B8789 0%, #36F7FA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -1314,7 +1314,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", "overridesCommon": true }, "externalApi": { @@ -1324,7 +1324,7 @@ } }, "color": "linear-gradient(135deg, #F86842 0%, #8C175B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -1370,7 +1370,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", "overridesCommon": true }, "externalApi": { @@ -1380,7 +1380,7 @@ } }, "color": "linear-gradient(315deg, #5C09BA 0%, #C72F9E 58.33%, #FCA027 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 }, { @@ -1410,7 +1410,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/quartz.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", "overridesCommon": true }, "explorers": [ @@ -1432,7 +1432,7 @@ } }, "color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "addressPrefix": 255 }, { @@ -1457,7 +1457,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", "overridesCommon": true }, "externalApi": { @@ -1467,7 +1467,7 @@ } }, "color": "linear-gradient(315deg, #391BB5 0%, #DB3795 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "addressPrefix": 268 }, { @@ -1487,7 +1487,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1501,7 +1501,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1515,7 +1515,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1528,7 +1528,7 @@ "symbol": "LCDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1576,7 +1576,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", "overridesCommon": true }, "externalApi": { @@ -1586,7 +1586,7 @@ } }, "color": "linear-gradient(97.21deg, #E40C5B 0%, #645AFD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 10 }, { @@ -1624,7 +1624,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/astar.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", "overridesCommon": true }, "externalApi": { @@ -1634,7 +1634,7 @@ } }, "color": "linear-gradient(315deg, #DD037D 0%, #00B1FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", "addressPrefix": 5 }, { @@ -1667,7 +1667,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", "overridesCommon": true }, "externalApi": { @@ -1677,7 +1677,7 @@ } }, "color": "linear-gradient(315deg, #5314F1 8%, #04E2FF 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 172 }, { @@ -1711,7 +1711,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/clover.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", "overridesCommon": true }, "externalApi": { @@ -1721,7 +1721,7 @@ } }, "color": "linear-gradient(315deg, #4AA7CA 0%, #56D5A7 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Clover.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", "addressPrefix": 128 }, { @@ -1734,7 +1734,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" } ], "nodes": [ @@ -1752,7 +1752,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -1762,7 +1762,7 @@ } }, "color": "linear-gradient(315deg, #23371A 0%, #89C62D 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 0 }, { @@ -1792,11 +1792,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial_solo.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #720497 0%, #F50083 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -1830,11 +1830,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/robonomics.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #2A4ECB 0%, #4CABEC 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", "addressPrefix": 32 }, { @@ -1847,7 +1847,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -1857,7 +1857,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/encointer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", "overridesCommon": true }, "externalApi": { @@ -1867,7 +1867,7 @@ } }, "color": "linear-gradient(315deg, #001BC4 0%, #3F59FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Encointer.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Encointer.svg", "addressPrefix": 42 }, { @@ -1881,7 +1881,7 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1895,7 +1895,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1909,7 +1909,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1933,7 +1933,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kintsugi.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", "overridesCommon": true }, "externalApi": { @@ -1943,7 +1943,7 @@ } }, "color": "linear-gradient(315deg, #180C2B 0%, #1E3258 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "addressPrefix": 2092 }, { @@ -1955,7 +1955,7 @@ "assetId": 0, "symbol": "PICA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" } ], "nodes": [ @@ -1973,7 +1973,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/picasso.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", "overridesCommon": true }, "externalApi": { @@ -1983,7 +1983,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", "addressPrefix": 49 }, { @@ -1995,7 +1995,7 @@ "assetId": 0, "symbol": "ZTG", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" } ], "nodes": [ @@ -2005,7 +2005,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/zeitgeist.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", "overridesCommon": true }, "externalApi": { @@ -2015,7 +2015,7 @@ } }, "color": "linear-gradient(315deg, #132849 0%, #2C5AA6 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", "addressPrefix": 73 }, { @@ -2027,7 +2027,7 @@ "assetId": 0, "symbol": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" } ], "nodes": [ @@ -2041,7 +2041,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kico.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", "overridesCommon": true }, "externalApi": { @@ -2051,7 +2051,7 @@ } }, "color": "linear-gradient(315deg, #248A63 0%, #58B18F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "addressPrefix": 42 }, { @@ -2063,7 +2063,7 @@ "assetId": 0, "symbol": "LIT", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg" } ], "nodes": [ @@ -2081,7 +2081,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litmus.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", "overridesCommon": true }, "externalApi": { @@ -2091,7 +2091,7 @@ } }, "color": "linear-gradient(315deg, #4A22E1 0%, #7657EF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg", "addressPrefix": 131 }, { @@ -2103,7 +2103,7 @@ "assetId": 0, "symbol": "CRAB", "precision": 18, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" } ], "nodes": [ @@ -2125,7 +2125,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crab.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", "overridesCommon": true }, "externalApi": { @@ -2135,7 +2135,7 @@ } }, "color": "linear-gradient(315deg, #E6335B 0%, #0036F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "addressPrefix": 42 }, { @@ -2147,7 +2147,7 @@ "assetId": 0, "symbol": "SUB", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" } ], "nodes": [ @@ -2163,7 +2163,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", "overridesCommon": true }, "externalApi": { @@ -2173,7 +2173,7 @@ } }, "color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -2186,7 +2186,7 @@ "symbol": "CSM", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crust.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crust.svg" } ], "nodes": [ @@ -2208,7 +2208,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crust_shadow.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", "overridesCommon": true }, "externalApi": { @@ -2218,7 +2218,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crust.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crust.svg", "addressPrefix": 66 }, { @@ -2231,7 +2231,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -2241,7 +2241,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", "overridesCommon": true }, "externalApi": { @@ -2251,7 +2251,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 50%, #5A92AB 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -2263,7 +2263,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -2285,7 +2285,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee_solo.json", "overridesCommon": true }, "externalApi": { @@ -2295,7 +2295,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 50%, #91E3DA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -2308,7 +2308,7 @@ "symbol": "CFG", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" } ], "nodes": [ @@ -2330,7 +2330,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/centrifuge.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", "overridesCommon": true }, "externalApi": { @@ -2340,7 +2340,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", "addressPrefix": 36 }, { @@ -2353,7 +2353,7 @@ "symbol": "EFI", "precision": 18, "priceId": "efinity", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" } ], "nodes": [ @@ -2363,7 +2363,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/efinity.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", "overridesCommon": true }, "externalApi": { @@ -2373,7 +2373,7 @@ } }, "color": "linear-gradient(315.17deg, #4E6FD4 0%, #7B99F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg", "addressPrefix": 1110 }, { @@ -2385,7 +2385,7 @@ "assetId": 0, "symbol": "HDX", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" } ], "nodes": [ @@ -2395,7 +2395,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/hydra_dx.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", "overridesCommon": true }, "externalApi": { @@ -2405,7 +2405,7 @@ } }, "color": "linear-gradient(315.17deg, #081152 19.76%, #F569AD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", "addressPrefix": 63 }, { @@ -2417,7 +2417,7 @@ "assetId": 0, "symbol": "INTR", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0002", @@ -2431,7 +2431,7 @@ "symbol": "interBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0001", @@ -2445,7 +2445,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0000", @@ -2459,7 +2459,7 @@ "symbol": "KINT", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000c", @@ -2473,7 +2473,7 @@ "symbol": "kBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000b", @@ -2487,7 +2487,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000a", @@ -2504,7 +2504,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/interlay.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", "overridesCommon": true }, "externalApi": { @@ -2514,7 +2514,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "addressPrefix": 42 }, { @@ -2526,7 +2526,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -2546,7 +2546,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -2556,7 +2556,7 @@ } }, "color": "linear-gradient(315.17deg, #50AA85 8%, #57C799 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -2567,7 +2567,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -2587,11 +2587,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle_solo.json", "overridesCommon": true }, "color": "linear-gradient(315.17deg, #50AA85 0%, #57C799 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -2603,7 +2603,7 @@ "assetId": 0, "symbol": "PHA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -2613,11 +2613,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #78930F 0%, #D1F068 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "addressPrefix": 30 }, { @@ -2629,7 +2629,7 @@ "assetId": 0, "symbol": "TUR", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" } ], "nodes": [ @@ -2643,11 +2643,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/turing.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #B533B3 14.94%, #38EDF1 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", "addressPrefix": 51 } ] diff --git a/chains/v2/chains_dev.json b/chains/v2/chains_dev.json index 2291e79bd..31def9397 100644 --- a/chains/v2/chains_dev.json +++ b/chains/v2/chains_dev.json @@ -51,10 +51,10 @@ } ], "color": "linear-gradient(315deg, #D43079 0%, #F93C90 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", "overridesCommon": true }, "externalApi": { @@ -68,7 +68,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot-dev.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" } }, "options": [ @@ -126,10 +126,10 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", "overridesCommon": true }, "externalApi": { @@ -143,7 +143,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -188,10 +188,10 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", "overridesCommon": true }, "externalApi": { @@ -205,7 +205,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -221,7 +221,7 @@ "assetId": 0, "symbol": "WND", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" }, { "assetId": 1, @@ -248,10 +248,10 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westmint.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", "overridesCommon": true }, "externalApi": { @@ -281,16 +281,16 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Rococo.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", "overridesCommon": true }, "externalApi": { "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/rococo.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/rococo.json" } }, "options": [ @@ -307,7 +307,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama" }, { @@ -316,7 +316,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "8" } @@ -326,7 +326,7 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHAOS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", "typeExtras": { "assetId": "69420" } @@ -336,7 +336,7 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", "typeExtras": { "assetId": "567" } @@ -346,7 +346,7 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "88888" } @@ -356,7 +356,7 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", "typeExtras": { "assetId": "223" } @@ -366,7 +366,7 @@ "symbol": "ARIS", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "assetId": "16" } @@ -377,7 +377,7 @@ "precision": 4, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "11" } @@ -416,7 +416,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -426,7 +426,7 @@ } }, "color": "linear-gradient(315deg, #1C3816 0%, #4F6B49 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -444,7 +444,7 @@ "assetId": 1, "symbol": "kUSD", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KUSD.svg", "priceId": "tether", "type": "orml", "typeExtras": { @@ -458,7 +458,7 @@ "assetId": 2, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -473,7 +473,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x050000", @@ -487,7 +487,7 @@ "symbol": "BNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "priceId": "bifrost-native-coin", "typeExtras": { "currencyIdScale": "0x00a8", @@ -501,7 +501,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -515,7 +515,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -529,7 +529,7 @@ "precision": 12, "priceId": "kintsugi", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -543,7 +543,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -556,7 +556,7 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAI.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -569,7 +569,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -582,7 +582,7 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -596,7 +596,7 @@ "precision": 18, "priceId": "quartz", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -609,7 +609,7 @@ "symbol": "ARIS", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -623,7 +623,7 @@ "precision": 18, "priceId": "moonriver", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -636,7 +636,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -650,7 +650,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crust.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crust.svg", "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -664,7 +664,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -700,7 +700,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -722,7 +722,7 @@ } }, "color": "linear-gradient(315.17deg, #E40C5B 0%, #FF4C3B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -747,7 +747,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "182365888117048807484804376330534607370" } @@ -758,7 +758,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -769,7 +769,7 @@ "precision": 12, "priceId": "kintsugi", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "assetId": "175400718394635817552109270754364440562" } @@ -780,7 +780,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "10810581592933651521121702237638664357" } @@ -791,7 +791,7 @@ "precision": 12, "priceId": "bifrost-native-coin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "319623561105283008236062145480775032445" } @@ -802,7 +802,7 @@ "precision": 8, "priceId": "bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "assetId": "328179947973504579459046439826496046832" } @@ -835,7 +835,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", "overridesCommon": true }, "externalApi": { @@ -845,7 +845,7 @@ } }, "color": "linear-gradient(135deg, #F2A007 19.29%, #A56B00 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -884,11 +884,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbase.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1287, "options": [ "ethereumBased", @@ -912,17 +912,17 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkatrain.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkatrain.json", "overridesCommon": true }, "externalApi": { "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkatrain.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkatrain.json" } }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 0, "options": [ "crowdloans", @@ -968,10 +968,10 @@ } ], "color": "linear-gradient(135deg, #987ED9 0%, #5132AA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/shiden.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", "overridesCommon": true }, "externalApi": { @@ -996,7 +996,7 @@ "assetId": 1, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -1011,7 +1011,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x0209", @@ -1026,7 +1026,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1040,7 +1040,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1054,7 +1054,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KUSD.svg", "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1067,7 +1067,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1091,7 +1091,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -1113,7 +1113,7 @@ } }, "color": "linear-gradient(135deg, #12D5D5 0%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -1127,7 +1127,7 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1141,7 +1141,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1155,7 +1155,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1179,7 +1179,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kintsugi.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", "overridesCommon": true }, "externalApi": { @@ -1189,7 +1189,7 @@ } }, "color": "linear-gradient(315deg, #180C2B 0%, #1E3258 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "addressPrefix": 2092 }, { @@ -1215,7 +1215,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, "explorers": [ @@ -1241,7 +1241,7 @@ } }, "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -1271,7 +1271,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial_solo.json", "overridesCommon": true }, "externalApi": { @@ -1281,7 +1281,7 @@ } }, "color": "linear-gradient(315deg, #720497 0%, #F50083 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -1293,7 +1293,7 @@ "assetId": 0, "symbol": "HKO", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg" }, { "assetId": 1, @@ -1301,7 +1301,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "100" } @@ -1311,7 +1311,7 @@ "symbol": "kUSD", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KUSD.svg", "typeExtras": { "assetId": "103" } @@ -1321,7 +1321,7 @@ "symbol": "LKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "109" } @@ -1331,7 +1331,7 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "1000" } @@ -1342,7 +1342,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "107" } @@ -1359,7 +1359,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel_heiko.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", "overridesCommon": true }, "explorers": [ @@ -1377,7 +1377,7 @@ } }, "color": "linear-gradient(315deg, #3A55F5 8%, #04E2FF 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -1408,7 +1408,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/basilisk.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", "overridesCommon": true }, "externalApi": { @@ -1418,7 +1418,7 @@ } }, "color": "linear-gradient(315deg, #5B892B 0%, #97D92D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "addressPrefix": 10041 }, { @@ -1444,7 +1444,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/altair.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", "overridesCommon": true }, "explorers": [ @@ -1466,7 +1466,7 @@ } }, "color": "linear-gradient(315deg, #A37539 0%, #F5B840 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "addressPrefix": 136 }, { @@ -1504,7 +1504,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/khala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", "overridesCommon": true }, "externalApi": { @@ -1514,7 +1514,7 @@ } }, "color": "linear-gradient(315deg, #0B8789 0%, #36F7FA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -1552,7 +1552,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", "overridesCommon": true }, "externalApi": { @@ -1562,7 +1562,7 @@ } }, "color": "linear-gradient(135deg, #F86842 0%, #8C175B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -1590,11 +1590,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38, "options": [ "testnet" @@ -1643,7 +1643,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", "overridesCommon": true }, "externalApi": { @@ -1653,7 +1653,7 @@ } }, "color": "linear-gradient(315deg, #5C09BA 0%, #C72F9E 58.33%, #FCA027 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 }, { @@ -1683,7 +1683,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/quartz.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", "overridesCommon": true }, "explorers": [ @@ -1705,7 +1705,7 @@ } }, "color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "addressPrefix": 255 }, { @@ -1730,7 +1730,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", "overridesCommon": true }, "externalApi": { @@ -1740,7 +1740,7 @@ } }, "color": "linear-gradient(315deg, #391BB5 0%, #DB3795 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "addressPrefix": 268 }, { @@ -1760,7 +1760,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1774,7 +1774,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1788,7 +1788,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1801,7 +1801,7 @@ "symbol": "LCDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1849,7 +1849,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", "overridesCommon": true }, "externalApi": { @@ -1859,7 +1859,7 @@ } }, "color": "linear-gradient(97.21deg, #E40C5B 0%, #645AFD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 10 }, { @@ -1877,7 +1877,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1895,11 +1895,11 @@ "testnet" ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala_mandala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 42 }, { @@ -1933,7 +1933,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbeam.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", "overridesCommon": true }, "externalApi": { @@ -1943,7 +1943,7 @@ } }, "color": "linear-gradient(135deg, #53CBC8 0%, #11807D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -1984,7 +1984,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/astar.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", "overridesCommon": true }, "externalApi": { @@ -1994,7 +1994,7 @@ } }, "color": "linear-gradient(315deg, #DD037D 0%, #00B1FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", "addressPrefix": 5 }, { @@ -2031,7 +2031,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", "overridesCommon": true }, "externalApi": { @@ -2041,7 +2041,7 @@ } }, "color": "linear-gradient(315deg, #5314F1 8%, #04E2FF 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 172 }, { @@ -2075,7 +2075,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/clover.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", "overridesCommon": true }, "externalApi": { @@ -2085,7 +2085,7 @@ } }, "color": "linear-gradient(315deg, #4AA7CA 0%, #56D5A7 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Clover.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", "addressPrefix": 128 }, { @@ -2098,7 +2098,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" } ], "nodes": [ @@ -2124,7 +2124,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -2134,7 +2134,7 @@ } }, "color": "linear-gradient(315deg, #23371A 0%, #89C62D 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 0 }, { @@ -2168,7 +2168,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/robonomics.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", "overridesCommon": true }, "externalApi": { @@ -2178,7 +2178,7 @@ } }, "color": "linear-gradient(315deg, #2A4ECB 0%, #4CABEC 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", "addressPrefix": 32 }, { @@ -2191,7 +2191,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -2201,7 +2201,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/encointer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", "overridesCommon": true }, "externalApi": { @@ -2211,7 +2211,7 @@ } }, "color": "linear-gradient(315deg, #001BC4 0%, #3F59FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Encointer.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Encointer.svg", "addressPrefix": 42 }, { @@ -2223,7 +2223,7 @@ "assetId": 0, "symbol": "PICA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" } ], "nodes": [ @@ -2241,7 +2241,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/picasso.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", "overridesCommon": true }, "externalApi": { @@ -2251,7 +2251,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", "addressPrefix": 49 }, { @@ -2263,7 +2263,7 @@ "assetId": 0, "symbol": "ZTG", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" } ], "nodes": [ @@ -2273,7 +2273,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/zeitgeist.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", "overridesCommon": true }, "externalApi": { @@ -2283,7 +2283,7 @@ } }, "color": "linear-gradient(315deg, #132849 0%, #2C5AA6 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", "addressPrefix": 73 }, { @@ -2295,7 +2295,7 @@ "assetId": 0, "symbol": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" } ], "nodes": [ @@ -2309,7 +2309,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kico.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", "overridesCommon": true }, "externalApi": { @@ -2319,7 +2319,7 @@ } }, "color": "linear-gradient(315deg, #248A63 0%, #58B18F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "addressPrefix": 42 }, { @@ -2331,7 +2331,7 @@ "assetId": 0, "symbol": "LIT", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg" } ], "nodes": [ @@ -2349,7 +2349,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litmus.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", "overridesCommon": true }, "externalApi": { @@ -2359,7 +2359,7 @@ } }, "color": "linear-gradient(315deg, #4A22E1 0%, #7657EF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg", "addressPrefix": 131 }, { @@ -2371,7 +2371,7 @@ "assetId": 0, "symbol": "CRAB", "precision": 18, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" } ], "nodes": [ @@ -2393,7 +2393,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crab.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", "overridesCommon": true }, "externalApi": { @@ -2403,7 +2403,7 @@ } }, "color": "linear-gradient(315deg, #E6335B 0%, #0036F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "addressPrefix": 42 }, { @@ -2415,7 +2415,7 @@ "assetId": 0, "symbol": "SUB", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" } ], "nodes": [ @@ -2431,7 +2431,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", "overridesCommon": true }, "externalApi": { @@ -2441,7 +2441,7 @@ } }, "color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -2454,7 +2454,7 @@ "symbol": "CSM", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crust.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crust.svg" } ], "nodes": [ @@ -2476,7 +2476,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crust_shadow.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", "overridesCommon": true }, "externalApi": { @@ -2486,7 +2486,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crust.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crust.svg", "addressPrefix": 66 }, { @@ -2499,7 +2499,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -2515,7 +2515,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", "overridesCommon": true }, "externalApi": { @@ -2525,7 +2525,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 50%, #5A92AB 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -2538,7 +2538,7 @@ "symbol": "CFG", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" } ], "nodes": [ @@ -2560,7 +2560,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/centrifuge.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", "overridesCommon": true }, "externalApi": { @@ -2570,7 +2570,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", "addressPrefix": 36 }, { @@ -2583,7 +2583,7 @@ "symbol": "EFI", "precision": 18, "priceId": "efinity", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" } ], "nodes": [ @@ -2593,7 +2593,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/efinity.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", "overridesCommon": true }, "externalApi": { @@ -2603,7 +2603,7 @@ } }, "color": "linear-gradient(315.17deg, #4E6FD4 0%, #7B99F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg", "addressPrefix": 1110 }, { @@ -2615,7 +2615,7 @@ "assetId": 0, "symbol": "HDX", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" } ], "nodes": [ @@ -2625,7 +2625,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/hydra_dx.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", "overridesCommon": true }, "externalApi": { @@ -2635,7 +2635,7 @@ } }, "color": "linear-gradient(315.17deg, #081152 19.76%, #F569AD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", "addressPrefix": 63 }, { @@ -2647,7 +2647,7 @@ "assetId": 0, "symbol": "INTR", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0002", @@ -2661,7 +2661,7 @@ "symbol": "interBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0001", @@ -2675,7 +2675,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0000", @@ -2689,7 +2689,7 @@ "symbol": "KINT", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000c", @@ -2703,7 +2703,7 @@ "symbol": "kBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000b", @@ -2717,7 +2717,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000a", @@ -2734,7 +2734,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/interlay.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", "overridesCommon": true }, "externalApi": { @@ -2744,7 +2744,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "addressPrefix": 42 }, { @@ -2756,7 +2756,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -2774,7 +2774,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee_solo.json", "overridesCommon": true }, "externalApi": { @@ -2784,7 +2784,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 50%, #91E3DA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -2796,7 +2796,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -2816,7 +2816,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -2826,7 +2826,7 @@ } }, "color": "linear-gradient(315.17deg, #50AA85 8%, #57C799 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -2837,7 +2837,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -2857,7 +2857,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle_solo.json", "overridesCommon": true }, "externalApi": { @@ -2867,7 +2867,7 @@ } }, "color": "linear-gradient(315.17deg, #50AA85 0%, #57C799 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -2878,7 +2878,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -2888,11 +2888,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/singular_testnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Testnet.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Testnet.svg", "addressPrefix": 0 }, { @@ -2904,7 +2904,7 @@ "assetId": 0, "symbol": "PHA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -2914,7 +2914,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -2924,7 +2924,7 @@ } }, "color": "linear-gradient(315deg, #78930F 0%, #D1F068 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "addressPrefix": 30 }, { @@ -2936,7 +2936,7 @@ "assetId": 0, "symbol": "TUR", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" } ], "nodes": [ @@ -2950,7 +2950,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/turing.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", "overridesCommon": true }, "externalApi": { @@ -2960,7 +2960,7 @@ } }, "color": "linear-gradient(315deg, #B533B3 14.94%, #38EDF1 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", "addressPrefix": 51 } ] diff --git a/chains/v2/types/3dpass.json b/chains/v2/types/3dpass.json new file mode 100644 index 000000000..db19db7b2 --- /dev/null +++ b/chains/v2/types/3dpass.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 113, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "poscan_runtime.Event": "GenericEvent", + "poscan_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/Integritee.json b/chains/v2/types/Integritee.json index af2bff88b..559529196 100644 --- a/chains/v2/types/Integritee.json +++ b/chains/v2/types/Integritee.json @@ -1,16 +1,16 @@ { - "runtime_id": 2, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "shell_runtime.Event": "GenericEvent", - "shell_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 38, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "integritee_runtime.RuntimeEvent": "GenericEvent", + "integritee_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/Integritee_solo.json b/chains/v2/types/Integritee_solo.json index f8446934c..1bf742955 100644 --- a/chains/v2/types/Integritee_solo.json +++ b/chains/v2/types/Integritee_solo.json @@ -13,4 +13,4 @@ "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/acala.json b/chains/v2/types/acala.json index b7c6ba54e..0e6edb7f1 100644 --- a/chains/v2/types/acala.json +++ b/chains/v2/types/acala.json @@ -1,16 +1,33 @@ { - "runtime_id": 2000, + "runtime_id": 2220, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "acala_primitives.signature.AcalaMultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "acala_runtime.Event": "GenericEvent", - "acala_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "acala_primitives.signature.AcalaMultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "acala_runtime.RuntimeEvent": "GenericEvent", + "acala_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/acala_mandala.json b/chains/v2/types/acala_mandala.json index 5b428cb0c..2ad612b78 100644 --- a/chains/v2/types/acala_mandala.json +++ b/chains/v2/types/acala_mandala.json @@ -1,16 +1,16 @@ { - "runtime_id": 2025, + "runtime_id": 2130, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "acala_primitives.signature.AcalaMultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "mandala_runtime.Event": "GenericEvent", - "mandala_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "acala_primitives.signature.AcalaMultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "mandala_runtime.RuntimeEvent": "GenericEvent", + "mandala_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] } diff --git a/chains/v2/types/ajuna.json b/chains/v2/types/ajuna.json new file mode 100644 index 000000000..220d4f2a0 --- /dev/null +++ b/chains/v2/types/ajuna.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 119, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "ajuna_runtime.RuntimeEvent": "GenericEvent", + "ajuna_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/aleph_zero.json b/chains/v2/types/aleph_zero.json index f78b3cf2c..22055479c 100644 --- a/chains/v2/types/aleph_zero.json +++ b/chains/v2/types/aleph_zero.json @@ -1,16 +1,16 @@ { - "runtime_id": 12, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "aleph_runtime.Event": "GenericEvent", - "aleph_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 65, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "aleph_runtime.RuntimeEvent": "GenericEvent", + "aleph_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/aleph_zero_testnet.json b/chains/v2/types/aleph_zero_testnet.json index 791572d17..8facf32bc 100644 --- a/chains/v2/types/aleph_zero_testnet.json +++ b/chains/v2/types/aleph_zero_testnet.json @@ -1,5 +1,5 @@ { - "runtime_id": 12, + "runtime_id": 60, "types": { "Balance": "u128", "Index": "u32", @@ -7,8 +7,8 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "aleph_runtime.Event": "GenericEvent", - "aleph_runtime.Call": "GenericCall", + "aleph_runtime.RuntimeEvent": "GenericEvent", + "aleph_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, diff --git a/chains/v2/types/altair.json b/chains/v2/types/altair.json index ec61440a4..759478ba9 100644 --- a/chains/v2/types/altair.json +++ b/chains/v2/types/altair.json @@ -1,16 +1,33 @@ { - "runtime_id": 1007, + "runtime_id": 1027, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "altair_runtime.Event": "GenericEvent", - "altair_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "altair_runtime.RuntimeEvent": "GenericEvent", + "altair_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/amplitude.json b/chains/v2/types/amplitude.json new file mode 100644 index 000000000..a419fa208 --- /dev/null +++ b/chains/v2/types/amplitude.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 11, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "amplitude_runtime.RuntimeEvent": "GenericEvent", + "amplitude_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/amplitude_foucoco.json b/chains/v2/types/amplitude_foucoco.json new file mode 100644 index 000000000..944a38a7b --- /dev/null +++ b/chains/v2/types/amplitude_foucoco.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 13, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "foucoco_runtime.RuntimeEvent": "GenericEvent", + "foucoco_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/astar.json b/chains/v2/types/astar.json index e16501551..de563556f 100644 --- a/chains/v2/types/astar.json +++ b/chains/v2/types/astar.json @@ -1,16 +1,16 @@ { - "runtime_id": 1, + "runtime_id": 71, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "astar_runtime.Event": "GenericEvent", - "astar_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "astar_runtime.RuntimeEvent": "GenericEvent", + "astar_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/aventus.json b/chains/v2/types/aventus.json new file mode 100644 index 000000000..aa204701a --- /dev/null +++ b/chains/v2/types/aventus.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 44, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "avn_parachain_runtime.RuntimeEvent": "GenericEvent", + "avn_parachain_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/aventus_testnet.json b/chains/v2/types/aventus_testnet.json new file mode 100644 index 000000000..c47954c3e --- /dev/null +++ b/chains/v2/types/aventus_testnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 21, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "avn_parachain_runtime.Event": "GenericEvent", + "avn_parachain_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/bajun.json b/chains/v2/types/bajun.json index 9f25e70e3..55a5485e6 100644 --- a/chains/v2/types/bajun.json +++ b/chains/v2/types/bajun.json @@ -1,5 +1,5 @@ { - "runtime_id": 1, + "runtime_id": 123, "types": { "Balance": "u128", "Index": "u32", @@ -7,8 +7,8 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "bajun_runtime.Event": "GenericEvent", - "bajun_runtime.Call": "GenericCall", + "bajun_runtime.RuntimeEvent": "GenericEvent", + "bajun_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, diff --git a/chains/v2/types/basilisk.json b/chains/v2/types/basilisk.json index 66495b79a..fa50fe3c2 100644 --- a/chains/v2/types/basilisk.json +++ b/chains/v2/types/basilisk.json @@ -1,16 +1,33 @@ { - "runtime_id": 25, + "runtime_id": 105, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_core.crypto.AccountId32", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "basilisk_runtime.Event": "GenericEvent", - "basilisk_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_core.crypto.AccountId32", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "basilisk_runtime.RuntimeEvent": "GenericEvent", + "basilisk_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/beresheet.json b/chains/v2/types/beresheet.json new file mode 100644 index 000000000..8ae015f25 --- /dev/null +++ b/chains/v2/types/beresheet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 10054, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "edgeware_runtime.Event": "GenericEvent", + "edgeware_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/bifrost.json b/chains/v2/types/bifrost.json index 2b32ec68b..df2f2b9d3 100644 --- a/chains/v2/types/bifrost.json +++ b/chains/v2/types/bifrost.json @@ -1,16 +1,16 @@ { - "runtime_id": 943, + "runtime_id": 984, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "bifrost_kusama_runtime.Event": "GenericEvent", - "bifrost_kusama_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "bifrost_kusama_runtime.RuntimeEvent": "GenericEvent", + "bifrost_kusama_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/bifrost_polkadot.json b/chains/v2/types/bifrost_polkadot.json index f3879fa5e..4ff232e1a 100644 --- a/chains/v2/types/bifrost_polkadot.json +++ b/chains/v2/types/bifrost_polkadot.json @@ -1,5 +1,5 @@ { - "runtime_id": 932, + "runtime_id": 984, "types": { "Balance": "u128", "Index": "u32", @@ -7,8 +7,8 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "bifrost_polkadot_runtime.Event": "GenericEvent", - "bifrost_polkadot_runtime.Call": "GenericCall", + "bifrost_polkadot_runtime.RuntimeEvent": "GenericEvent", + "bifrost_polkadot_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, diff --git a/chains/v2/types/bit.country_pioneer.json b/chains/v2/types/bit.country_pioneer.json index ba13e5079..2a64e939b 100644 --- a/chains/v2/types/bit.country_pioneer.json +++ b/chains/v2/types/bit.country_pioneer.json @@ -1,16 +1,16 @@ { - "runtime_id": 2, + "runtime_id": 19, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "pioneer_runtime.Event": "GenericEvent", - "pioneer_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "pioneer_runtime.Event": "GenericEvent", + "pioneer_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/bittensor.json b/chains/v2/types/bittensor.json new file mode 100644 index 000000000..6f0cd0371 --- /dev/null +++ b/chains/v2/types/bittensor.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 135, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "node_subtensor_runtime.RuntimeEvent": "GenericEvent", + "node_subtensor_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/calamari.json b/chains/v2/types/calamari.json index 66409b804..18f67059f 100644 --- a/chains/v2/types/calamari.json +++ b/chains/v2/types/calamari.json @@ -1,16 +1,16 @@ { - "runtime_id": 4, + "runtime_id": 4401, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "calamari_runtime.Event": "GenericEvent", - "calamari_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "calamari_runtime.RuntimeEvent": "GenericEvent", + "calamari_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/centrifuge.json b/chains/v2/types/centrifuge.json index 809c799c1..2e95ae79f 100644 --- a/chains/v2/types/centrifuge.json +++ b/chains/v2/types/centrifuge.json @@ -1,16 +1,33 @@ { - "runtime_id": 1000, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "centrifuge_runtime.Event": "GenericEvent", - "centrifuge_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 1023, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "centrifuge_runtime.RuntimeEvent": "GenericEvent", + "centrifuge_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/clover.json b/chains/v2/types/clover.json index 6161d288a..73b77c61f 100644 --- a/chains/v2/types/clover.json +++ b/chains/v2/types/clover.json @@ -1,16 +1,16 @@ { - "runtime_id": 16, + "runtime_id": 25, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "clover_runtime.Event": "GenericEvent", - "clover_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "clover_runtime.Event": "GenericEvent", + "clover_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] } diff --git a/chains/v2/types/collectives.json b/chains/v2/types/collectives.json new file mode 100644 index 000000000..b2d038636 --- /dev/null +++ b/chains/v2/types/collectives.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 9430, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "collectives_polkadot_runtime.RuntimeEvent": "GenericEvent", + "collectives_polkadot_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/composable.json b/chains/v2/types/composable.json index 237fb09d3..640c3488a 100644 --- a/chains/v2/types/composable.json +++ b/chains/v2/types/composable.json @@ -1,5 +1,5 @@ { - "runtime_id": 100, + "runtime_id": 10040, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,27 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "composable_runtime.Event": "GenericEvent", - "composable_runtime.Call": "GenericCall", + "composable_runtime.RuntimeEvent": "GenericEvent", + "composable_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/crab.json b/chains/v2/types/crab.json index 8cabe1986..d721d1b29 100644 --- a/chains/v2/types/crab.json +++ b/chains/v2/types/crab.json @@ -1,5 +1,5 @@ { - "runtime_id": 3, + "runtime_id": 5360, "types": { "Balance": "u128", "Index": "u32", @@ -13,4 +13,4 @@ "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/crab2.json b/chains/v2/types/crab2.json new file mode 100644 index 000000000..c2b902da7 --- /dev/null +++ b/chains/v2/types/crab2.json @@ -0,0 +1,35 @@ +{ + "runtime_id": 6000, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "primitive_types.H160": "[u8; 20]", + "account.AccountId20": "primitive_types.H160", + "Address": "account.AccountId20", + "EthereumSignature": { + "type": "struct", + "type_mapping": [ + [ + "r", + "H256" + ], + [ + "s", + "H256" + ], + [ + "v", + "u64" + ] + ] + }, + "ExtrinsicSignature": "EthereumSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "crab_runtime.RuntimeEvent": "GenericEvent", + "crab_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "[u8; 32]", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] + } diff --git a/chains/v2/types/crust.json b/chains/v2/types/crust.json new file mode 100644 index 000000000..b5da54566 --- /dev/null +++ b/chains/v2/types/crust.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 4, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "crust_parachain_runtime.Event": "GenericEvent", + "crust_parachain_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/crust_shadow.json b/chains/v2/types/crust_shadow.json index dca49ce82..5e75515b5 100644 --- a/chains/v2/types/crust_shadow.json +++ b/chains/v2/types/crust_shadow.json @@ -1,16 +1,16 @@ { - "runtime_id": 7, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "crust_parachain_runtime.Event": "GenericEvent", - "crust_parachain_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 16, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "crust_parachain_runtime.Event": "GenericEvent", + "crust_parachain_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/dao_ipci.json b/chains/v2/types/dao_ipci.json new file mode 100644 index 000000000..a0aa14ec4 --- /dev/null +++ b/chains/v2/types/dao_ipci.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 5, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "ipci_runtime.Event": "GenericEvent", + "ipci_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/darwinia.json b/chains/v2/types/darwinia.json new file mode 100644 index 000000000..85844931a --- /dev/null +++ b/chains/v2/types/darwinia.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 5330, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "darwinia_parachain_runtime.Event": "GenericEvent", + "darwinia_parachain_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/darwinia_crab.json b/chains/v2/types/darwinia_crab.json new file mode 100644 index 000000000..6ce604371 --- /dev/null +++ b/chains/v2/types/darwinia_crab.json @@ -0,0 +1,35 @@ +{ + "runtime_id": 6020, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "primitive_types.H160": "[u8; 20]", + "account.AccountId20": "primitive_types.H160", + "Address": "account.AccountId20", + "EthereumSignature": { + "type": "struct", + "type_mapping": [ + [ + "r", + "H256" + ], + [ + "s", + "H256" + ], + [ + "v", + "u8" + ] + ] + }, + "ExtrinsicSignature": "EthereumSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "darwinia_runtime.RuntimeEvent": "GenericEvent", + "darwinia_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/darwinia_polkadot.json b/chains/v2/types/darwinia_polkadot.json new file mode 100644 index 000000000..93405206a --- /dev/null +++ b/chains/v2/types/darwinia_polkadot.json @@ -0,0 +1,35 @@ +{ + "runtime_id": 6100, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "primitive_types.H160": "[u8; 20]", + "account.AccountId20": "primitive_types.H160", + "Address": "account.AccountId20", + "EthereumSignature": { + "type": "struct", + "type_mapping": [ + [ + "r", + "H256" + ], + [ + "s", + "H256" + ], + [ + "v", + "u8" + ] + ] + }, + "ExtrinsicSignature": "EthereumSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "darwinia_runtime.RuntimeEvent": "GenericEvent", + "darwinia_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/dock.json b/chains/v2/types/dock.json new file mode 100644 index 000000000..4e888ce83 --- /dev/null +++ b/chains/v2/types/dock.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 47, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "dock_runtime.Event": "GenericEvent", + "dock_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/dorafactory.json b/chains/v2/types/dorafactory.json index 8d9053a35..0ce492c49 100644 --- a/chains/v2/types/dorafactory.json +++ b/chains/v2/types/dorafactory.json @@ -1,5 +1,5 @@ { - "runtime_id": 10, + "runtime_id": 33, "types": { "Balance": "u128", "Index": "u32", diff --git a/chains/v2/types/edgeware.json b/chains/v2/types/edgeware.json new file mode 100644 index 000000000..b09ac36bd --- /dev/null +++ b/chains/v2/types/edgeware.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 53, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "edgeware_runtime.Event": "GenericEvent", + "edgeware_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/efinity.json b/chains/v2/types/efinity.json index d85d83dd9..52939aada 100644 --- a/chains/v2/types/efinity.json +++ b/chains/v2/types/efinity.json @@ -1,16 +1,16 @@ { - "runtime_id": 1, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "efinity_runtime.Event": "GenericEvent", - "efinity_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 3014, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "efinity_runtime.RuntimeEvent": "GenericEvent", + "efinity_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/encointer.json b/chains/v2/types/encointer.json index 1697a0e4b..f0a459c6d 100644 --- a/chains/v2/types/encointer.json +++ b/chains/v2/types/encointer.json @@ -1,16 +1,33 @@ { - "runtime_id": 0, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "launch_runtime.Event": "GenericEvent", - "launch_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 16, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "encointer_runtime.RuntimeEvent": "GenericEvent", + "encointer_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/enjin_matrixchain.json b/chains/v2/types/enjin_matrixchain.json new file mode 100644 index 000000000..93d77320d --- /dev/null +++ b/chains/v2/types/enjin_matrixchain.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 605, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "enjin_matrix_runtime.RuntimeEvent": "GenericEvent", + "enjin_matrix_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/equilibrium_types.json b/chains/v2/types/equilibrium_types.json new file mode 100644 index 000000000..f42c32edc --- /dev/null +++ b/chains/v2/types/equilibrium_types.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 37, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "eq_node_runtime.RuntimeEvent": "GenericEvent", + "eq_node_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/ewx_parachain.json b/chains/v2/types/ewx_parachain.json new file mode 100644 index 000000000..d3c0a2646 --- /dev/null +++ b/chains/v2/types/ewx_parachain.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 51, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "ew_parachain_runtime.RuntimeEvent": "GenericEvent", + "ew_parachain_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/ewx_parachain_testnet.json b/chains/v2/types/ewx_parachain_testnet.json new file mode 100644 index 000000000..b3b3338eb --- /dev/null +++ b/chains/v2/types/ewx_parachain_testnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 34, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "ew_parachain_runtime.RuntimeEvent": "GenericEvent", + "ew_parachain_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/ewx_rococo_testnet.json b/chains/v2/types/ewx_rococo_testnet.json new file mode 100644 index 000000000..4e72724ed --- /dev/null +++ b/chains/v2/types/ewx_rococo_testnet.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 52, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "ew_parachain_runtime.RuntimeEvent": "GenericEvent", + "ew_parachain_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/frequency.json b/chains/v2/types/frequency.json new file mode 100644 index 000000000..63ac5244b --- /dev/null +++ b/chains/v2/types/frequency.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 48, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "frequency_runtime.RuntimeEvent": "GenericEvent", + "frequency_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/fusotao.json b/chains/v2/types/fusotao.json new file mode 100644 index 000000000..7047985b0 --- /dev/null +++ b/chains/v2/types/fusotao.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 157, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "fuso_runtime.RuntimeEvent": "GenericEvent", + "fuso_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/giant.json b/chains/v2/types/giant.json new file mode 100644 index 000000000..5b242e1df --- /dev/null +++ b/chains/v2/types/giant.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 120, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "giant_runtime.RuntimeEvent": "GenericEvent", + "giant_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/giant_testnet.json b/chains/v2/types/giant_testnet.json new file mode 100644 index 000000000..c5a453517 --- /dev/null +++ b/chains/v2/types/giant_testnet.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 141, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "testnet_runtime.RuntimeEvent": "GenericEvent", + "testnet_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/gm.json b/chains/v2/types/gm.json new file mode 100644 index 000000000..ab0f47f38 --- /dev/null +++ b/chains/v2/types/gm.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 8, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "gm_chain_runtime.Event": "GenericEvent", + "gm_chain_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/governance2_testnet.json b/chains/v2/types/governance2_testnet.json new file mode 100644 index 000000000..00a245f4c --- /dev/null +++ b/chains/v2/types/governance2_testnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 105, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "governance2_runtime.RuntimeEvent": "GenericEvent", + "governance2_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/hashed.json b/chains/v2/types/hashed.json new file mode 100644 index 000000000..fe6ee5c0d --- /dev/null +++ b/chains/v2/types/hashed.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 2, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "241", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "hashed_parachain_runtime.Event": "GenericEvent", + "hashed_parachain_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/hydra_dx.json b/chains/v2/types/hydra_dx.json index e8d66222f..1223a16da 100644 --- a/chains/v2/types/hydra_dx.json +++ b/chains/v2/types/hydra_dx.json @@ -1,16 +1,33 @@ { - "runtime_id": 100, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_core.crypto.AccountId32", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "hydradx_runtime.Event": "GenericEvent", - "hydradx_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 185, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_core.crypto.AccountId32", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "hydradx_runtime.RuntimeEvent": "GenericEvent", + "hydradx_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/imbue.json b/chains/v2/types/imbue.json index c19f500fd..5615f2d01 100644 --- a/chains/v2/types/imbue.json +++ b/chains/v2/types/imbue.json @@ -1,5 +1,5 @@ { - "runtime_id": 1008, + "runtime_id": 9435, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,27 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "imbue_kusama_runtime.Event": "GenericEvent", - "imbue_kusama_runtime.Call": "GenericCall", + "imbue_kusama_runtime.RuntimeEvent": "GenericEvent", + "imbue_kusama_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/interlay.json b/chains/v2/types/interlay.json index 77c221218..b3449cf1c 100644 --- a/chains/v2/types/interlay.json +++ b/chains/v2/types/interlay.json @@ -1,16 +1,16 @@ { - "runtime_id": 1, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_core.crypto.AccountId32", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "interlay_runtime_parachain.Event": "GenericEvent", - "interlay_runtime_parachain.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 1025003, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_core.crypto.AccountId32", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "interlay_runtime_parachain.RuntimeEvent": "GenericEvent", + "interlay_runtime_parachain.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/interlay_testnet.json b/chains/v2/types/interlay_testnet.json new file mode 100644 index 000000000..a11ac9586 --- /dev/null +++ b/chains/v2/types/interlay_testnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 1024003, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_core.crypto.AccountId32", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "interlay_runtime_parachain.RuntimeEvent": "GenericEvent", + "interlay_runtime_parachain.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/joystream.json b/chains/v2/types/joystream.json new file mode 100644 index 000000000..2effb01e6 --- /dev/null +++ b/chains/v2/types/joystream.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 2001, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_core.crypto.AccountId32", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "joystream_node_runtime.Event": "GenericEvent", + "joystream_node_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/jur.json b/chains/v2/types/jur.json new file mode 100644 index 000000000..596eecdbc --- /dev/null +++ b/chains/v2/types/jur.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 112, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "jur_node_runtime.RuntimeEvent": "GenericEvent", + "jur_node_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/kabocha.json b/chains/v2/types/kabocha.json index 7f8c03453..6eaed3800 100644 --- a/chains/v2/types/kabocha.json +++ b/chains/v2/types/kabocha.json @@ -1,5 +1,5 @@ { - "runtime_id": 6, + "runtime_id": 28, "types": { "Balance": "u128", "Index": "u32", diff --git a/chains/v2/types/kapex.json b/chains/v2/types/kapex.json new file mode 100644 index 000000000..b4efe2411 --- /dev/null +++ b/chains/v2/types/kapex.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 4, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "totem_parachain_runtime.RuntimeEvent": "GenericEvent", + "totem_parachain_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/karura.json b/chains/v2/types/karura.json index b5c7dde85..03507780f 100644 --- a/chains/v2/types/karura.json +++ b/chains/v2/types/karura.json @@ -1,16 +1,33 @@ { - "runtime_id": 1019, + "runtime_id": 2220, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "acala_primitives.signature.AcalaMultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "karura_runtime.Event": "GenericEvent", - "karura_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "acala_primitives.signature.AcalaMultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "karura_runtime.RuntimeEvent": "GenericEvent", + "karura_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/khala.json b/chains/v2/types/khala.json index ee64d8750..52eaabe45 100644 --- a/chains/v2/types/khala.json +++ b/chains/v2/types/khala.json @@ -1,5 +1,5 @@ { - "runtime_id": 1090, + "runtime_id": 1255, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,27 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "khala_parachain_runtime.Event": "GenericEvent", - "khala_parachain_runtime.Call": "GenericCall", + "khala_parachain_runtime.RuntimeEvent": "GenericEvent", + "khala_parachain_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/kico.json b/chains/v2/types/kico.json index 9080dc746..67f170bae 100644 --- a/chains/v2/types/kico.json +++ b/chains/v2/types/kico.json @@ -1,5 +1,5 @@ { - "runtime_id": 6, + "runtime_id": 2022072701, "types": { "Balance": "u128", "Index": "u32", @@ -13,4 +13,4 @@ "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/kilt_peregrine.json b/chains/v2/types/kilt_peregrine.json index 4561646df..22ede92a5 100644 --- a/chains/v2/types/kilt_peregrine.json +++ b/chains/v2/types/kilt_peregrine.json @@ -1,16 +1,16 @@ { - "runtime_id": 10200, + "runtime_id": 11000, "types": { - "Balance": "u128", - "Index": "u64", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "peregrine_runtime.Event": "GenericEvent", - "peregrine_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u64", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "peregrine_runtime.RuntimeEvent": "GenericEvent", + "peregrine_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/kilt_spiritnet.json b/chains/v2/types/kilt_spiritnet.json index 280c578b7..f9d3e1bd0 100644 --- a/chains/v2/types/kilt_spiritnet.json +++ b/chains/v2/types/kilt_spiritnet.json @@ -1,16 +1,16 @@ { - "runtime_id": 10101, + "runtime_id": 11110, "types": { - "Balance": "u128", - "Index": "u64", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "spiritnet_runtime.Event": "GenericEvent", - "spiritnet_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "spiritnet_runtime.RuntimeEvent": "GenericEvent", + "spiritnet_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/kintsugi.json b/chains/v2/types/kintsugi.json index 249c32a1b..bf00b0b60 100644 --- a/chains/v2/types/kintsugi.json +++ b/chains/v2/types/kintsugi.json @@ -1,16 +1,16 @@ { - "runtime_id": 9, + "runtime_id": 1025003, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_core.crypto.AccountId32", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "kintsugi_runtime_parachain.Event": "GenericEvent", - "kintsugi_runtime_parachain.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_core.crypto.AccountId32", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "kintsugi_runtime_parachain.RuntimeEvent": "GenericEvent", + "kintsugi_runtime_parachain.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/kintsugi_testnet.json b/chains/v2/types/kintsugi_testnet.json new file mode 100644 index 000000000..36615a03e --- /dev/null +++ b/chains/v2/types/kintsugi_testnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 1023001, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_core.crypto.AccountId32", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "testnet_kintsugi_runtime_parachain.RuntimeEvent": "GenericEvent", + "testnet_kintsugi_runtime_parachain.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/krest.json b/chains/v2/types/krest.json new file mode 100644 index 000000000..f182bb1ea --- /dev/null +++ b/chains/v2/types/krest.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 4, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "peaq_krest_runtime.RuntimeEvent": "GenericEvent", + "peaq_krest_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/kusama.json b/chains/v2/types/kusama.json index 814157ca2..108ff0f45 100644 --- a/chains/v2/types/kusama.json +++ b/chains/v2/types/kusama.json @@ -1,16 +1,16 @@ { - "runtime_id": 9122, + "runtime_id": 1000000, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "kusama_runtime.Event": "GenericEvent", - "kusama_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain_primitives.primitives.Id", + "staging_kusama_runtime.RuntimeEvent": "GenericEvent", + "staging_kusama_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/kusama_bridge_hub.json b/chains/v2/types/kusama_bridge_hub.json new file mode 100644 index 000000000..52ca00712 --- /dev/null +++ b/chains/v2/types/kusama_bridge_hub.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 1000000, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "bridge_hub_kusama_runtime.RuntimeEvent": "GenericEvent", + "bridge_hub_kusama_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/kylin.json b/chains/v2/types/kylin.json new file mode 100644 index 000000000..7d3de5a74 --- /dev/null +++ b/chains/v2/types/kylin.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 21, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "kylin_runtime.Event": "GenericEvent", + "kylin_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/litentry.json b/chains/v2/types/litentry.json index 5989846f2..6faaa1797 100644 --- a/chains/v2/types/litentry.json +++ b/chains/v2/types/litentry.json @@ -1,5 +1,5 @@ { - "runtime_id": 9000, + "runtime_id": 9168, "types": { "Balance": "u128", "Index": "u32", @@ -7,8 +7,8 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "litentry_parachain_runtime.Event": "GenericEvent", - "litentry_parachain_runtime.Call": "GenericCall", + "litentry_parachain_runtime.RuntimeEvent": "GenericEvent", + "litentry_parachain_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, diff --git a/chains/v2/types/litmus.json b/chains/v2/types/litmus.json index 80f8330e9..79f0735d2 100644 --- a/chains/v2/types/litmus.json +++ b/chains/v2/types/litmus.json @@ -1,5 +1,5 @@ { - "runtime_id": 9020, + "runtime_id": 9151, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,10 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "litmus_parachain_runtime.Event": "GenericEvent", - "litmus_parachain_runtime.Call": "GenericCall", + "litmus_parachain_runtime.RuntimeEvent": "GenericEvent", + "litmus_parachain_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/mangatax.json b/chains/v2/types/mangatax.json index c9d60d62f..f814f5840 100644 --- a/chains/v2/types/mangatax.json +++ b/chains/v2/types/mangatax.json @@ -1,5 +1,5 @@ { - "runtime_id": 3, + "runtime_id": 3100, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,10 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "mangata_kusama_runtime.Event": "GenericEvent", - "mangata_kusama_runtime.Call": "GenericCall", + "mangata_kusama_runtime.RuntimeEvent": "GenericEvent", + "mangata_kusama_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/manta.json b/chains/v2/types/manta.json new file mode 100644 index 000000000..161c898fa --- /dev/null +++ b/chains/v2/types/manta.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 4400, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "manta_runtime.RuntimeEvent": "GenericEvent", + "manta_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/moonbase.json b/chains/v2/types/moonbase.json index 0fd48350a..4a391a2d2 100644 --- a/chains/v2/types/moonbase.json +++ b/chains/v2/types/moonbase.json @@ -1,5 +1,5 @@ { - "runtime_id": 900, + "runtime_id": 2000, "types": { "Balance": "u128", "Index": "u32", @@ -24,12 +24,29 @@ ] ] }, + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + }, "ExtrinsicSignature": "EthereumSignature", "ParaId": "polkadot_parachain.primitives.Id", - "moonbase_runtime.Event": "GenericEvent", - "moonbase_runtime.Call": "GenericCall", + "moonbase_runtime.RuntimeEvent": "GenericEvent", + "moonbase_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/moonbase_relay.json b/chains/v2/types/moonbase_relay.json index 8f42cc0a6..3a3451389 100644 --- a/chains/v2/types/moonbase_relay.json +++ b/chains/v2/types/moonbase_relay.json @@ -1,5 +1,5 @@ { - "runtime_id": 9230, + "runtime_id": 9401, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,27 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "westend_runtime.Event": "GenericEvent", - "westend_runtime.Call": "GenericCall", + "westend_runtime.RuntimeEvent": "GenericEvent", + "westend_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/moonbeam.json b/chains/v2/types/moonbeam.json index 7340b2f30..d86f3ccb4 100644 --- a/chains/v2/types/moonbeam.json +++ b/chains/v2/types/moonbeam.json @@ -1,5 +1,5 @@ { - "runtime_id": 1001, + "runtime_id": 2000, "types": { "Balance": "u128", "Index": "u32", @@ -26,10 +26,10 @@ }, "ExtrinsicSignature": "EthereumSignature", "ParaId": "polkadot_parachain.primitives.Id", - "moonbeam_runtime.Event": "GenericEvent", - "moonbeam_runtime.Call": "GenericCall", + "moonbeam_runtime.RuntimeEvent": "GenericEvent", + "moonbeam_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/moonriver.json b/chains/v2/types/moonriver.json index 56ae184af..0d5a87120 100644 --- a/chains/v2/types/moonriver.json +++ b/chains/v2/types/moonriver.json @@ -1,5 +1,5 @@ { - "runtime_id": 900, + "runtime_id": 2000, "types": { "Balance": "u128", "Index": "u32", @@ -26,10 +26,10 @@ }, "ExtrinsicSignature": "EthereumSignature", "ParaId": "polkadot_parachain.primitives.Id", - "moonriver_runtime.Event": "GenericEvent", - "moonriver_runtime.Call": "GenericCall", + "moonriver_runtime.RuntimeEvent": "GenericEvent", + "moonriver_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/myriad.json b/chains/v2/types/myriad.json new file mode 100644 index 000000000..ffe391929 --- /dev/null +++ b/chains/v2/types/myriad.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 2036, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "myriad_runtime.RuntimeEvent": "GenericEvent", + "myriad_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/nodle.json b/chains/v2/types/nodle.json index 271b52afe..299a96534 100644 --- a/chains/v2/types/nodle.json +++ b/chains/v2/types/nodle.json @@ -1,5 +1,5 @@ { - "runtime_id": 1, + "runtime_id": 23, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,10 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "runtime_eden.Event": "GenericEvent", - "runtime_eden.Call": "GenericCall", + "runtime_eden.RuntimeEvent": "GenericEvent", + "runtime_eden.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/nodle_solo.json b/chains/v2/types/nodle_solo.json index e3dfff816..a40602261 100644 --- a/chains/v2/types/nodle_solo.json +++ b/chains/v2/types/nodle_solo.json @@ -13,4 +13,4 @@ "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/novasama_gov2_testnet.json b/chains/v2/types/novasama_gov2_testnet.json new file mode 100644 index 000000000..14db33deb --- /dev/null +++ b/chains/v2/types/novasama_gov2_testnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 9401, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "kusama_runtime.RuntimeEvent": "GenericEvent", + "kusama_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/origintrail.json b/chains/v2/types/origintrail.json index 2a4577890..7f371a38a 100644 --- a/chains/v2/types/origintrail.json +++ b/chains/v2/types/origintrail.json @@ -1,5 +1,5 @@ { - "runtime_id": 100, + "runtime_id": 121, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,27 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "origintrail_parachain_runtime.Event": "GenericEvent", - "origintrail_parachain_runtime.Call": "GenericCall", + "origintrail_parachain_runtime.RuntimeEvent": "GenericEvent", + "origintrail_parachain_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/parallel.json b/chains/v2/types/parallel.json index 0237f07ee..e79cd3504 100644 --- a/chains/v2/types/parallel.json +++ b/chains/v2/types/parallel.json @@ -1,16 +1,16 @@ { - "runtime_id": 172, + "runtime_id": 201, "types": { - "Balance": "u128", - "Index": "u64", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "parallel_runtime.Event": "GenericEvent", - "parallel_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "parallel_runtime.RuntimeEvent": "GenericEvent", + "parallel_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] } diff --git a/chains/v2/types/parallel_heiko.json b/chains/v2/types/parallel_heiko.json index d7628199a..e4e772348 100644 --- a/chains/v2/types/parallel_heiko.json +++ b/chains/v2/types/parallel_heiko.json @@ -1,16 +1,16 @@ { - "runtime_id": 171, + "runtime_id": 200, "types": { - "Balance": "u128", - "Index": "u64", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "heiko_runtime.Event": "GenericEvent", - "heiko_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "heiko_runtime.RuntimeEvent": "GenericEvent", + "heiko_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] } diff --git a/chains/v2/types/pendulum.json b/chains/v2/types/pendulum.json new file mode 100644 index 000000000..81dce3e14 --- /dev/null +++ b/chains/v2/types/pendulum.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 8, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "pendulum_runtime.RuntimeEvent": "GenericEvent", + "pendulum_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/phala.json b/chains/v2/types/phala.json index 5614e36ac..31eb474bc 100644 --- a/chains/v2/types/phala.json +++ b/chains/v2/types/phala.json @@ -1,16 +1,16 @@ { - "runtime_id": 1090, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "phala_parachain_runtime.Event": "GenericEvent", - "phala_parachain_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 1255, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "phala_parachain_runtime.RuntimeEvent": "GenericEvent", + "phala_parachain_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/picasso.json b/chains/v2/types/picasso.json index 7879b82c9..b41765417 100644 --- a/chains/v2/types/picasso.json +++ b/chains/v2/types/picasso.json @@ -1,16 +1,16 @@ { - "runtime_id": 200, + "runtime_id": 10040, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "picasso_runtime.Event": "GenericEvent", - "picasso_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "picasso_runtime.RuntimeEvent": "GenericEvent", + "picasso_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/pichiu.json b/chains/v2/types/pichiu.json index a6d5870bb..6a99bfa63 100644 --- a/chains/v2/types/pichiu.json +++ b/chains/v2/types/pichiu.json @@ -1,5 +1,5 @@ { - "runtime_id": 14, + "runtime_id": 25, "types": { "Balance": "u128", "Index": "u32", diff --git a/chains/v2/types/polkadex.json b/chains/v2/types/polkadex.json index faacea10c..4f93c3dd5 100644 --- a/chains/v2/types/polkadex.json +++ b/chains/v2/types/polkadex.json @@ -1,16 +1,33 @@ { - "runtime_id": 274, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "node_polkadex_runtime.Event": "GenericEvent", - "node_polkadex_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 311, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "node_polkadex_runtime.RuntimeEvent": "GenericEvent", + "node_polkadex_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/polkadot.json b/chains/v2/types/polkadot.json index 7310013d6..f75ccb3fd 100644 --- a/chains/v2/types/polkadot.json +++ b/chains/v2/types/polkadot.json @@ -1,16 +1,33 @@ { - "runtime_id": 9122, + "runtime_id": 9431, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "polkadot_runtime.Event": "GenericEvent", - "polkadot_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain_primitives.primitives.Id", + "polkadot_runtime.RuntimeEvent": "GenericEvent", + "polkadot_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/polkadot_bridge_hub.json b/chains/v2/types/polkadot_bridge_hub.json new file mode 100644 index 000000000..fa61e787c --- /dev/null +++ b/chains/v2/types/polkadot_bridge_hub.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 9430, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "bridge_hub_polkadot_runtime.RuntimeEvent": "GenericEvent", + "bridge_hub_polkadot_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/polkatrain.json b/chains/v2/types/polkatrain.json index ecb3769c7..f5fde0160 100644 --- a/chains/v2/types/polkatrain.json +++ b/chains/v2/types/polkatrain.json @@ -13,4 +13,4 @@ "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/polymesh.json b/chains/v2/types/polymesh.json index e819767f5..973a5a205 100644 --- a/chains/v2/types/polymesh.json +++ b/chains/v2/types/polymesh.json @@ -1,5 +1,5 @@ { - "runtime_id": 5000001, + "runtime_id": 5003001, "types": { "Balance": "u128", "Index": "u32", diff --git a/chains/v2/types/polymesh_mainnet.json b/chains/v2/types/polymesh_mainnet.json new file mode 100644 index 000000000..c4c5da9dd --- /dev/null +++ b/chains/v2/types/polymesh_mainnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 6000004, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "polymesh_runtime_mainnet.runtime.RuntimeEvent": "GenericEvent", + "polymesh_runtime_mainnet.runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/quartz.json b/chains/v2/types/quartz.json index 0270d0b79..d7b6012ce 100644 --- a/chains/v2/types/quartz.json +++ b/chains/v2/types/quartz.json @@ -1,5 +1,5 @@ { - "runtime_id": 913010, + "runtime_id": 10010064, "types": { "Balance": "u128", "Index": "u32", @@ -7,10 +7,27 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "unique_runtime.Event": "GenericEvent", - "unique_runtime.Call": "GenericCall", + "quartz_runtime.RuntimeEvent": "GenericEvent", + "quartz_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] } diff --git a/chains/v2/types/robonomics.json b/chains/v2/types/robonomics.json index 66470c17f..d8a795113 100644 --- a/chains/v2/types/robonomics.json +++ b/chains/v2/types/robonomics.json @@ -1,16 +1,16 @@ { - "runtime_id": 10, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "main_runtime.Event": "GenericEvent", - "main_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 31, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "main_runtime.Event": "GenericEvent", + "main_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/rococo.json b/chains/v2/types/rococo.json index 9a0fa6d28..1a9b0b713 100644 --- a/chains/v2/types/rococo.json +++ b/chains/v2/types/rococo.json @@ -1,16 +1,16 @@ { - "runtime_id": 9230, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "rococo_runtime.Event": "GenericEvent", - "rococo_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 9390, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "rococo_runtime.RuntimeEvent": "GenericEvent", + "rococo_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/rococo_asset_hub.json b/chains/v2/types/rococo_asset_hub.json new file mode 100644 index 000000000..552728087 --- /dev/null +++ b/chains/v2/types/rococo_asset_hub.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 10005, + "types": { + "Balance": "u128", + "Index": "u8", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain_primitives.primitives.Id", + "asset_hub_rococo_runtime.RuntimeEvent": "GenericEvent", + "asset_hub_rococo_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/shiden.json b/chains/v2/types/shiden.json index d92f3ea5f..60bd322cf 100644 --- a/chains/v2/types/shiden.json +++ b/chains/v2/types/shiden.json @@ -1,16 +1,33 @@ { - "runtime_id": 33, + "runtime_id": 111, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "shiden_runtime.Event": "GenericEvent", - "shiden_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "shiden_runtime.RuntimeEvent": "GenericEvent", + "shiden_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/singular_testnet.json b/chains/v2/types/singular_testnet.json index d42e7a571..8b4be2368 100644 --- a/chains/v2/types/singular_testnet.json +++ b/chains/v2/types/singular_testnet.json @@ -1,16 +1,16 @@ { - "runtime_id": 9110, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "polkadot_runtime.Event": "GenericEvent", - "polkadot_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 9180, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "polkadot_runtime.Event": "GenericEvent", + "polkadot_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/snow.json b/chains/v2/types/snow.json new file mode 100644 index 000000000..c791c6c84 --- /dev/null +++ b/chains/v2/types/snow.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 2, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "snow_runtime.RuntimeEvent": "GenericEvent", + "snow_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/statemine.json b/chains/v2/types/statemine.json index ee8a09043..59689cbf4 100644 --- a/chains/v2/types/statemine.json +++ b/chains/v2/types/statemine.json @@ -1,16 +1,33 @@ { - "runtime_id": 504, + "runtime_id": 1000000, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "statemine_runtime.Event": "GenericEvent", - "statemine_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "asset_hub_kusama_runtime.RuntimeEvent": "GenericEvent", + "asset_hub_kusama_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/statemint.json b/chains/v2/types/statemint.json index d6cc8f688..99ccd32f3 100644 --- a/chains/v2/types/statemint.json +++ b/chains/v2/types/statemint.json @@ -1,16 +1,16 @@ { - "runtime_id": 601, + "runtime_id": 9430, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "statemint_runtime.Event": "GenericEvent", - "statemint_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "asset_hub_polkadot_runtime.RuntimeEvent": "GenericEvent", + "asset_hub_polkadot_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/subsocial.json b/chains/v2/types/subsocial.json index a4fe4181d..035620195 100644 --- a/chains/v2/types/subsocial.json +++ b/chains/v2/types/subsocial.json @@ -1,16 +1,16 @@ { - "runtime_id": 5, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "subsocial_parachain_runtime.Event": "GenericEvent", - "subsocial_parachain_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 31, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "subsocial_parachain_runtime.RuntimeEvent": "GenericEvent", + "subsocial_parachain_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/subsocial_solo.json b/chains/v2/types/subsocial_solo.json index 5b806d1ec..d4604b64d 100644 --- a/chains/v2/types/subsocial_solo.json +++ b/chains/v2/types/subsocial_solo.json @@ -13,4 +13,4 @@ "pallet_identity.types.Data": "Data" }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/tanganika.json b/chains/v2/types/tanganika.json index dcd8e7531..6c0926671 100644 --- a/chains/v2/types/tanganika.json +++ b/chains/v2/types/tanganika.json @@ -1,5 +1,5 @@ { - "runtime_id": 3, + "runtime_id": 10, "types": { "Balance": "u128", "Index": "u32", diff --git a/chains/v2/types/ternoa.json b/chains/v2/types/ternoa.json new file mode 100644 index 000000000..6d4d2a261 --- /dev/null +++ b/chains/v2/types/ternoa.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 23, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "mainnet_runtime.RuntimeEvent": "GenericEvent", + "mainnet_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/ternoa_alphanet.json b/chains/v2/types/ternoa_alphanet.json new file mode 100644 index 000000000..1046884f2 --- /dev/null +++ b/chains/v2/types/ternoa_alphanet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 15, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "alphanet_runtime.RuntimeEvent": "GenericEvent", + "alphanet_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/tinkernet.json b/chains/v2/types/tinkernet.json new file mode 100644 index 000000000..3e5e3bb75 --- /dev/null +++ b/chains/v2/types/tinkernet.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 19, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "tinkernet_runtime.RuntimeEvent": "GenericEvent", + "tinkernet_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/turing.json b/chains/v2/types/turing.json index 21bebc957..3e87ddc00 100644 --- a/chains/v2/types/turing.json +++ b/chains/v2/types/turing.json @@ -1,16 +1,16 @@ { - "runtime_id": 278, - "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "turing_runtime.Event": "GenericEvent", - "turing_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 295, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "turing_runtime.RuntimeEvent": "GenericEvent", + "turing_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/turing_staging.json b/chains/v2/types/turing_staging.json new file mode 100644 index 000000000..0c8e5d948 --- /dev/null +++ b/chains/v2/types/turing_staging.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 291, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "turing_runtime.RuntimeEvent": "GenericEvent", + "turing_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/unique.json b/chains/v2/types/unique.json index 3880ac633..e94ff6791 100644 --- a/chains/v2/types/unique.json +++ b/chains/v2/types/unique.json @@ -1,5 +1,5 @@ { - "runtime_id": 917004, + "runtime_id": 10010064, "types": { "Balance": "u128", "Index": "u32", @@ -7,8 +7,8 @@ "Address": "sp_runtime.multiaddress.MultiAddress", "ExtrinsicSignature": "sp_runtime.MultiSignature", "ParaId": "polkadot_parachain.primitives.Id", - "cumulus_pallet_parachain_system.Event": "GenericEvent", - "cumulus_pallet_parachain_system.Call": "GenericCall", + "unique_runtime.RuntimeEvent": "GenericEvent", + "unique_runtime.RuntimeCall": "GenericCall", "sp_core.crypto.AccountId32": "GenericAccountId", "pallet_identity.types.Data": "Data" }, diff --git a/chains/v2/types/vara.json b/chains/v2/types/vara.json new file mode 100644 index 000000000..599e4bc97 --- /dev/null +++ b/chains/v2/types/vara.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 1010, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "vara_runtime.RuntimeEvent": "GenericEvent", + "vara_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/vara_testnet.json b/chains/v2/types/vara_testnet.json new file mode 100644 index 000000000..a00e2453b --- /dev/null +++ b/chains/v2/types/vara_testnet.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 219, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "vara_runtime.RuntimeEvent": "GenericEvent", + "vara_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/watr.json b/chains/v2/types/watr.json new file mode 100644 index 000000000..defb77000 --- /dev/null +++ b/chains/v2/types/watr.json @@ -0,0 +1,16 @@ +{ + "runtime_id": 1240, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "watr_runtime.RuntimeEvent": "GenericEvent", + "watr_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v2/types/westend.json b/chains/v2/types/westend.json index f95b614c0..d292ae754 100644 --- a/chains/v2/types/westend.json +++ b/chains/v2/types/westend.json @@ -1,16 +1,33 @@ { - "runtime_id": 9122, + "runtime_id": 9430, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "westend_runtime.Event": "GenericEvent", - "westend_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "westend_runtime.RuntimeEvent": "GenericEvent", + "westend_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/westmint.json b/chains/v2/types/westmint.json index df80ec098..72b425bb6 100644 --- a/chains/v2/types/westmint.json +++ b/chains/v2/types/westmint.json @@ -1,16 +1,33 @@ { - "runtime_id": 600, + "runtime_id": 9400, "types": { - "Balance": "u128", - "Index": "u32", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "westmint_runtime.Event": "GenericEvent", - "westmint_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain_primitives.primitives.Id", + "asset_hub_westend_runtime.RuntimeEvent": "GenericEvent", + "asset_hub_westend_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "sp_weights.weight_v2.Weight" + ], + [ + "class", + "frame_support.dispatch.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } }, "versioning": [] -} \ No newline at end of file +} diff --git a/chains/v2/types/xx_network.json b/chains/v2/types/xx_network.json new file mode 100644 index 000000000..708317abc --- /dev/null +++ b/chains/v2/types/xx_network.json @@ -0,0 +1,33 @@ +{ + "runtime_id": 205, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "xxnetwork_runtime.Event": "GenericEvent", + "xxnetwork_runtime.Call": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data", + "RuntimeDispatchInfo": { + "type": "struct", + "type_mapping": [ + [ + "weight", + "u64" + ], + [ + "class", + "frame_support.weights.DispatchClass" + ], + [ + "partialFee", + "Balance" + ] + ] + } + }, + "versioning": [] +} diff --git a/chains/v2/types/zeitgeist.json b/chains/v2/types/zeitgeist.json index b650930d3..765d20440 100644 --- a/chains/v2/types/zeitgeist.json +++ b/chains/v2/types/zeitgeist.json @@ -1,16 +1,16 @@ { - "runtime_id": 33, - "types": { - "Balance": "u128", - "Index": "u64", - "Phase": "frame_system.Phase", - "Address": "sp_runtime.multiaddress.MultiAddress", - "ExtrinsicSignature": "sp_runtime.MultiSignature", - "ParaId": "polkadot_parachain.primitives.Id", - "zeitgeist_runtime.Event": "GenericEvent", - "zeitgeist_runtime.Call": "GenericCall", - "sp_core.crypto.AccountId32": "GenericAccountId", - "pallet_identity.types.Data": "Data" - }, - "versioning": [] -} \ No newline at end of file + "runtime_id": 51, + "types": { + "Balance": "u128", + "Index": "u32", + "Phase": "frame_system.Phase", + "Address": "sp_runtime.multiaddress.MultiAddress", + "ExtrinsicSignature": "sp_runtime.MultiSignature", + "ParaId": "polkadot_parachain.primitives.Id", + "zeitgeist_runtime.RuntimeEvent": "GenericEvent", + "zeitgeist_runtime.RuntimeCall": "GenericCall", + "sp_core.crypto.AccountId32": "GenericAccountId", + "pallet_identity.types.Data": "Data" + }, + "versioning": [] +} diff --git a/chains/v3/chains.json b/chains/v3/chains.json index 93122ea68..60a030a81 100644 --- a/chains/v3/chains.json +++ b/chains/v3/chains.json @@ -51,24 +51,24 @@ } ], "color": "linear-gradient(315deg, #D43079 0%, #F93C90 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", "overridesCommon": true }, "externalApi": { "staking": { "type": "subquery", - "url": "https://nova-polkadot.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" }, "history": { "type": "subquery", - "url": "https://nova-polkadot.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" } }, "options": [ @@ -130,24 +130,24 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", "overridesCommon": true }, "externalApi": { "staking": { "type": "subquery", - "url": "https://nova-kusama.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" }, "history": { "type": "subquery", - "url": "https://nova-kusama.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -192,24 +192,24 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", "overridesCommon": true }, "externalApi": { "staking": { "type": "subquery", - "url": "https://nova-westend.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" }, "history": { "type": "subquery", - "url": "https://nova-westend.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -226,7 +226,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama" }, { @@ -235,7 +235,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "8" } @@ -245,7 +245,7 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHAOS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", "typeExtras": { "assetId": "69420" } @@ -255,7 +255,7 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", "typeExtras": { "assetId": "567" } @@ -265,7 +265,7 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "88888" } @@ -275,7 +275,7 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", "typeExtras": { "assetId": "223" } @@ -285,7 +285,7 @@ "symbol": "ARIS", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "assetId": "16" } @@ -296,7 +296,7 @@ "precision": 4, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "11" } @@ -335,7 +335,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -345,7 +345,7 @@ } }, "color": "linear-gradient(315deg, #1C3816 0%, #4F6B49 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -363,7 +363,7 @@ "assetId": 1, "symbol": "aUSD", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "priceId": "tether", "type": "orml", "typeExtras": { @@ -377,7 +377,7 @@ "assetId": 2, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -392,7 +392,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x050000", @@ -406,7 +406,7 @@ "symbol": "BNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "priceId": "bifrost-native-coin", "typeExtras": { "currencyIdScale": "0x00a8", @@ -420,7 +420,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -434,7 +434,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -448,7 +448,7 @@ "precision": 12, "priceId": "kintsugi", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -462,7 +462,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -475,7 +475,7 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAI.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -488,7 +488,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -501,7 +501,7 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/taiKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -515,7 +515,7 @@ "precision": 18, "priceId": "quartz", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -528,7 +528,7 @@ "symbol": "ARIS", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -542,7 +542,7 @@ "precision": 18, "priceId": "moonriver", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -555,7 +555,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -569,7 +569,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -583,7 +583,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -597,7 +597,7 @@ "precision": 12, "priceId": "calamari-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "typeExtras": { "currencyIdScale": "0x050a00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -611,7 +611,7 @@ "precision": 12, "priceId": "integritee", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "typeExtras": { "currencyIdScale": "0x050800", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -624,7 +624,7 @@ "symbol": "KICO", "precision": 14, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "typeExtras": { "currencyIdScale": "0x050600", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -637,7 +637,7 @@ "symbol": "NEER", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "typeExtras": { "currencyIdScale": "0x050900", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -650,7 +650,7 @@ "symbol": "BSX", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "typeExtras": { "currencyIdScale": "0x050b00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -664,7 +664,7 @@ "precision": 18, "priceId": "altair", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -678,7 +678,7 @@ "precision": 9, "type": "orml", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "currencyIdScale": "0x050e00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -692,7 +692,7 @@ "precision": 9, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/EQD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", "typeExtras": { "currencyIdScale": "0x050f00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -706,7 +706,7 @@ "precision": 18, "type": "orml", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -742,7 +742,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -764,7 +764,7 @@ } }, "color": "linear-gradient(315.17deg, #E40C5B 0%, #FF4C3B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -789,7 +789,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -800,7 +800,7 @@ "precision": 12, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "110021739665376159354538090254163045594" } @@ -811,7 +811,7 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "224821240862170613278369189818311486111" } @@ -840,7 +840,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbeam.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", "overridesCommon": true }, "externalApi": { @@ -850,7 +850,7 @@ } }, "color": "linear-gradient(135deg, #53CBC8 0%, #11807D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -878,7 +878,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "182365888117048807484804376330534607370" } @@ -889,7 +889,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -900,7 +900,7 @@ "precision": 12, "priceId": "kintsugi", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "assetId": "175400718394635817552109270754364440562" } @@ -911,7 +911,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "10810581592933651521121702237638664357" } @@ -922,7 +922,7 @@ "precision": 12, "priceId": "bifrost-native-coin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "319623561105283008236062145480775032445" } @@ -933,7 +933,7 @@ "precision": 8, "priceId": "bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "assetId": "328179947973504579459046439826496046832" } @@ -944,7 +944,7 @@ "precision": 6, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "311091173110107856861649819128533077277" } @@ -955,7 +955,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "214920334981412447805621250067209749032" } @@ -966,7 +966,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "assetId": "108457044225666871745333730479173774551" } @@ -977,7 +977,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "189307976387032586987344677431204943363" } @@ -987,7 +987,7 @@ "symbol": "xcHKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "assetId": "76100021443485661246318545281171740067" } @@ -1020,7 +1020,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", "overridesCommon": true }, "externalApi": { @@ -1030,7 +1030,7 @@ } }, "color": "linear-gradient(135deg, #F2A007 19.29%, #A56B00 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -1081,10 +1081,10 @@ } }, "color": "linear-gradient(135deg, #987ED9 0%, #5132AA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/shiden.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", "overridesCommon": true } }, @@ -1103,7 +1103,7 @@ "assetId": 1, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -1118,7 +1118,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x0209", @@ -1133,7 +1133,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1147,7 +1147,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1161,7 +1161,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1174,7 +1174,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1188,7 +1188,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x0700000000", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1202,7 +1202,7 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x020a", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1216,7 +1216,7 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x0208", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1229,7 +1229,7 @@ "symbol": "vKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", "typeExtras": { "currencyIdScale": "0x0104", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1253,7 +1253,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -1275,7 +1275,7 @@ } }, "color": "linear-gradient(135deg, #3F3F3F 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -1310,7 +1310,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/basilisk.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", "overridesCommon": true }, "externalApi": { @@ -1320,7 +1320,7 @@ } }, "color": "linear-gradient(315deg, #5B892B 0%, #97D92D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "addressPrefix": 10041 }, { @@ -1364,11 +1364,11 @@ } }, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/altair.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #A37539 0%, #F5B840 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "addressPrefix": 136 }, { @@ -1380,7 +1380,7 @@ "assetId": 0, "symbol": "HKO", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" }, { "assetId": 1, @@ -1388,7 +1388,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "100" } @@ -1399,7 +1399,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "103" } @@ -1409,7 +1409,7 @@ "symbol": "LKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "assetId": "109" } @@ -1419,7 +1419,7 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", "typeExtras": { "assetId": "1000" } @@ -1430,7 +1430,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "107" } @@ -1441,7 +1441,7 @@ "precision": 18, "priceId": "moonriver", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "assetId": "113" } @@ -1452,7 +1452,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "115" } @@ -1463,7 +1463,7 @@ "precision": 9, "priceId": "genshiro", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "assetId": "123" } @@ -1480,7 +1480,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel_heiko.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", "overridesCommon": true }, "explorers": [ @@ -1498,7 +1498,7 @@ } }, "color": "linear-gradient(315deg, #3A55F5 8%, #04E2FF 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -1523,7 +1523,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, "explorers": [ @@ -1539,7 +1539,7 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -1552,7 +1552,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -1578,7 +1578,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/khala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", "overridesCommon": true }, "externalApi": { @@ -1588,7 +1588,7 @@ } }, "color": "linear-gradient(315deg, #0B8789 0%, #36F7FA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -1626,7 +1626,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", "overridesCommon": true }, "externalApi": { @@ -1636,7 +1636,7 @@ } }, "color": "linear-gradient(135deg, #F86842 0%, #8C175B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -1678,7 +1678,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", "overridesCommon": true }, "externalApi": { @@ -1688,7 +1688,7 @@ } }, "color": "linear-gradient(315deg, #5C09BA 0%, #C72F9E 58.33%, #FCA027 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 }, { @@ -1718,7 +1718,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/quartz.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", "overridesCommon": true }, "explorers": [ @@ -1740,7 +1740,7 @@ } }, "color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "addressPrefix": 255 }, { @@ -1765,7 +1765,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", "overridesCommon": true }, "externalApi": { @@ -1775,7 +1775,7 @@ } }, "color": "linear-gradient(315deg, #391BB5 0%, #DB3795 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "addressPrefix": 268 }, { @@ -1794,7 +1794,7 @@ "symbol": "LDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1808,7 +1808,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1822,7 +1822,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1835,7 +1835,7 @@ "symbol": "lcDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/lcDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1849,7 +1849,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1862,7 +1862,7 @@ "symbol": "PARA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1910,7 +1910,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", "overridesCommon": true }, "externalApi": { @@ -1920,7 +1920,7 @@ } }, "color": "linear-gradient(97.21deg, #E40C5B 0%, #645AFD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 10 }, { @@ -1940,7 +1940,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "340282366920938463463374607431768211455" } @@ -1969,7 +1969,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/astar.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", "overridesCommon": true }, "externalApi": { @@ -1979,7 +1979,7 @@ } }, "color": "linear-gradient(315deg, #DD037D 0%, #00B1FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", "addressPrefix": 5, "additional": { "defaultTip": "1000000" @@ -1994,7 +1994,7 @@ "assetId": 0, "symbol": "PARA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" }, { "assetId": 1, @@ -2002,7 +2002,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "101" } @@ -2013,7 +2013,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "1001" } @@ -2024,7 +2024,7 @@ "precision": 12, "priceId": "acala", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "108" } @@ -2035,7 +2035,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "104" } @@ -2045,7 +2045,7 @@ "symbol": "LDOT", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "assetId": "110" } @@ -2074,7 +2074,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", "overridesCommon": true }, "externalApi": { @@ -2084,7 +2084,7 @@ } }, "color": "linear-gradient(315deg, #5314F1 8%, #04E2FF 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 172 }, { @@ -2118,7 +2118,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/clover.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", "overridesCommon": true }, "externalApi": { @@ -2128,7 +2128,7 @@ } }, "color": "linear-gradient(315deg, #4AA7CA 0%, #56D5A7 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Clover.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", "addressPrefix": 128 }, { @@ -2141,7 +2141,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" } ], "nodes": [ @@ -2167,7 +2167,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -2177,7 +2177,7 @@ } }, "color": "linear-gradient(315deg, #23371A 0%, #89C62D 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 0 }, { @@ -2203,11 +2203,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial_solo.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #720497 0%, #F50083 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -2241,7 +2241,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/robonomics.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", "overridesCommon": true }, "externalApi": { @@ -2251,7 +2251,7 @@ } }, "color": "linear-gradient(315deg, #2A4ECB 0%, #4CABEC 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", "addressPrefix": 32 }, { @@ -2264,7 +2264,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -2278,7 +2278,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/encointer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", "overridesCommon": true }, "externalApi": { @@ -2288,7 +2288,7 @@ } }, "color": "linear-gradient(315deg, #001BC4 0%, #3F59FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Encointer.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Encointer.svg", "addressPrefix": 2 }, { @@ -2302,7 +2302,7 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -2316,7 +2316,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -2330,7 +2330,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -2354,7 +2354,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kintsugi.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", "overridesCommon": true }, "externalApi": { @@ -2364,7 +2364,7 @@ } }, "color": "linear-gradient(315deg, #180C2B 0%, #1E3258 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "addressPrefix": 2092 }, { @@ -2376,7 +2376,7 @@ "assetId": 0, "symbol": "PICA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" } ], "nodes": [ @@ -2394,7 +2394,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/picasso.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", "overridesCommon": true }, "externalApi": { @@ -2404,7 +2404,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", "addressPrefix": 49 }, { @@ -2416,7 +2416,7 @@ "assetId": 0, "symbol": "ZTG", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" } ], "nodes": [ @@ -2434,7 +2434,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/zeitgeist.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", "overridesCommon": true }, "externalApi": { @@ -2444,7 +2444,7 @@ } }, "color": "linear-gradient(315deg, #132849 0%, #2C5AA6 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", "addressPrefix": 73 }, { @@ -2456,7 +2456,7 @@ "assetId": 0, "symbol": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" } ], "nodes": [ @@ -2470,7 +2470,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kico.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", "overridesCommon": true }, "externalApi": { @@ -2480,7 +2480,7 @@ } }, "color": "linear-gradient(315deg, #248A63 0%, #58B18F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "addressPrefix": 42 }, { @@ -2493,7 +2493,7 @@ "symbol": "LIT", "precision": 12, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" } ], "nodes": [ @@ -2511,7 +2511,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litmus.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", "overridesCommon": true }, "externalApi": { @@ -2521,7 +2521,7 @@ } }, "color": "linear-gradient(315deg, #4A22E1 0%, #7657EF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg", "addressPrefix": 131 }, { @@ -2534,7 +2534,7 @@ "symbol": "CRAB", "precision": 18, "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" } ], "nodes": [ @@ -2556,7 +2556,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crab.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", "overridesCommon": true }, "externalApi": { @@ -2566,7 +2566,7 @@ } }, "color": "linear-gradient(315deg, #E6335B 0%, #0036F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "addressPrefix": 42 }, { @@ -2578,7 +2578,7 @@ "assetId": 0, "symbol": "SUB", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" } ], "nodes": [ @@ -2594,7 +2594,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", "overridesCommon": true }, "externalApi": { @@ -2604,7 +2604,7 @@ } }, "color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -2617,7 +2617,7 @@ "symbol": "CSM", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" } ], "nodes": [ @@ -2639,7 +2639,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crust_shadow.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", "overridesCommon": true }, "externalApi": { @@ -2649,7 +2649,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "addressPrefix": 66 }, { @@ -2662,7 +2662,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -2682,7 +2682,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", "overridesCommon": true }, "externalApi": { @@ -2692,7 +2692,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 47.14%, #91E3DA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -2705,7 +2705,7 @@ "symbol": "CFG", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" } ], "nodes": [ @@ -2727,7 +2727,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/centrifuge.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", "overridesCommon": true }, "externalApi": { @@ -2737,7 +2737,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", "addressPrefix": 36 }, { @@ -2750,7 +2750,7 @@ "symbol": "EFI", "precision": 18, "priceId": "efinity", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" } ], "nodes": [ @@ -2760,7 +2760,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/efinity.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", "overridesCommon": true }, "externalApi": { @@ -2770,7 +2770,7 @@ } }, "color": "linear-gradient(315.17deg, #4E6FD4 0%, #7B99F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg", "addressPrefix": 1110 }, { @@ -2782,7 +2782,7 @@ "assetId": 0, "symbol": "HDX", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" } ], "nodes": [ @@ -2792,7 +2792,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/hydra_dx.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", "overridesCommon": true }, "externalApi": { @@ -2802,7 +2802,7 @@ } }, "color": "linear-gradient(315.17deg, #081152 19.76%, #F569AD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", "addressPrefix": 63 }, { @@ -2814,7 +2814,7 @@ "assetId": 0, "symbol": "INTR", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0002", @@ -2828,7 +2828,7 @@ "symbol": "iBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0001", @@ -2842,7 +2842,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0000", @@ -2856,7 +2856,7 @@ "symbol": "KINT", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000c", @@ -2870,7 +2870,7 @@ "symbol": "kBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000b", @@ -2884,7 +2884,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000a", @@ -2905,7 +2905,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/interlay.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", "overridesCommon": true }, "externalApi": { @@ -2915,7 +2915,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "addressPrefix": 2032 }, { @@ -2927,7 +2927,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -2947,7 +2947,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -2957,7 +2957,7 @@ } }, "color": "linear-gradient(315.17deg, #50AA85 0%, #57C799 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -2970,7 +2970,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -2980,11 +2980,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #78930F 0%, #D1F068 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "addressPrefix": 30 }, { @@ -2996,7 +2996,7 @@ "assetId": 0, "symbol": "TUR", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" } ], "nodes": [ @@ -3010,7 +3010,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/turing.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", "overridesCommon": true }, "externalApi": { @@ -3020,7 +3020,7 @@ } }, "color": "linear-gradient(315deg, #B533B3 14.94%, #38EDF1 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", "addressPrefix": 51 }, { @@ -3032,7 +3032,7 @@ "symbol": "AZERO", "priceId": "aleph-zero", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" } ], "nodes": [ @@ -3050,7 +3050,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/aleph_zero.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", "overridesCommon": true }, "externalApi": { @@ -3060,7 +3060,7 @@ } }, "color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", "addressPrefix": 42 }, { @@ -3072,7 +3072,7 @@ "assetId": 0, "symbol": "LAYR", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" } ], "nodes": [ @@ -3086,11 +3086,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/composable.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", "overridesCommon": true }, "color": "linear-gradient(315.17deg, #7A0354 13.48%, #8E0076 46.85%, #F139FE 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg", "addressPrefix": 49 }, { @@ -3103,7 +3103,7 @@ "priceId": "polkadex", "staking": "relaychain", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" } ], "nodes": [ @@ -3129,7 +3129,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadex.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", "overridesCommon": true }, "externalApi": { @@ -3143,7 +3143,7 @@ } }, "color": "linear-gradient(315deg, #2B2D36 23.96%, #606169 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg", "addressPrefix": 88 }, { @@ -3164,11 +3164,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/origintrail.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #B62EB1 0%, #E96CE5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/OriginTrail.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", "addressPrefix": 101 }, { @@ -3190,11 +3190,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", "overridesCommon": true }, "color": "linear-gradient(135deg, #D43079 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -3216,11 +3216,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litentry.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #0E7227 0%, #5CC774 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", "addressPrefix": 31 }, { @@ -3249,11 +3249,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/unique.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #267DEE 0%, #5FC2F9 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Unique.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", "addressPrefix": 7391 }, { @@ -3275,11 +3275,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/dorafactory.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #E04E02 0%, #FCB350 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/DoraFactory.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", "addressPrefix": 128 } ] diff --git a/chains/v3/chains_dev.json b/chains/v3/chains_dev.json index 0b27841ab..9b9d0c19b 100644 --- a/chains/v3/chains_dev.json +++ b/chains/v3/chains_dev.json @@ -51,10 +51,10 @@ } ], "color": "linear-gradient(315deg, #D43079 0%, #F93C90 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", "overridesCommon": true }, "externalApi": { @@ -68,7 +68,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot-dev.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" } }, "options": [ @@ -130,10 +130,10 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", "overridesCommon": true }, "externalApi": { @@ -147,7 +147,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -192,10 +192,10 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", "overridesCommon": true }, "externalApi": { @@ -209,7 +209,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -225,7 +225,7 @@ "assetId": 0, "symbol": "WND", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" }, { "assetId": 1, @@ -256,10 +256,10 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westmint.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", "overridesCommon": true }, "externalApi": { @@ -281,7 +281,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama" }, { @@ -290,7 +290,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "8" } @@ -300,7 +300,7 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHAOS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", "typeExtras": { "assetId": "69420" } @@ -310,7 +310,7 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", "typeExtras": { "assetId": "567" } @@ -320,7 +320,7 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "88888" } @@ -330,7 +330,7 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", "typeExtras": { "assetId": "223" } @@ -340,7 +340,7 @@ "symbol": "ARIS", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "assetId": "16" } @@ -351,7 +351,7 @@ "precision": 4, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "11" } @@ -390,7 +390,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -400,7 +400,7 @@ } }, "color": "linear-gradient(315deg, #1C3816 0%, #4F6B49 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -418,7 +418,7 @@ "assetId": 1, "symbol": "aUSD", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "priceId": "tether", "type": "orml", "typeExtras": { @@ -432,7 +432,7 @@ "assetId": 2, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -447,7 +447,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x050000", @@ -461,7 +461,7 @@ "symbol": "BNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "priceId": "bifrost-native-coin", "typeExtras": { "currencyIdScale": "0x00a8", @@ -475,7 +475,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -489,7 +489,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -503,7 +503,7 @@ "precision": 12, "priceId": "kintsugi", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -517,7 +517,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -530,7 +530,7 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAI.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -543,7 +543,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -556,7 +556,7 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/taiKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -570,7 +570,7 @@ "precision": 18, "priceId": "quartz", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -583,7 +583,7 @@ "symbol": "ARIS", "precision": 8, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ARIS.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -597,7 +597,7 @@ "precision": 18, "priceId": "moonriver", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -610,7 +610,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -624,7 +624,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -638,7 +638,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -652,7 +652,7 @@ "precision": 12, "priceId": "calamari-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "typeExtras": { "currencyIdScale": "0x050a00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -666,7 +666,7 @@ "precision": 12, "priceId": "integritee", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "typeExtras": { "currencyIdScale": "0x050800", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -679,7 +679,7 @@ "symbol": "KICO", "precision": 14, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "typeExtras": { "currencyIdScale": "0x050600", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -692,7 +692,7 @@ "symbol": "NEER", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "typeExtras": { "currencyIdScale": "0x050900", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -705,7 +705,7 @@ "symbol": "BSX", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "typeExtras": { "currencyIdScale": "0x050b00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -719,7 +719,7 @@ "precision": 18, "priceId": "altair", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -733,7 +733,7 @@ "precision": 9, "type": "orml", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "currencyIdScale": "0x050e00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -747,7 +747,7 @@ "precision": 9, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/EQD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", "typeExtras": { "currencyIdScale": "0x050f00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -761,7 +761,7 @@ "precision": 18, "type": "orml", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -797,7 +797,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -819,7 +819,7 @@ } }, "color": "linear-gradient(315.17deg, #E40C5B 0%, #FF4C3B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -845,7 +845,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "182365888117048807484804376330534607370" } @@ -856,7 +856,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -867,7 +867,7 @@ "precision": 12, "priceId": "kintsugi", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "assetId": "175400718394635817552109270754364440562" } @@ -878,7 +878,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "10810581592933651521121702237638664357" } @@ -889,7 +889,7 @@ "precision": 12, "priceId": "bifrost-native-coin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "319623561105283008236062145480775032445" } @@ -900,7 +900,7 @@ "precision": 8, "priceId": "bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "assetId": "328179947973504579459046439826496046832" } @@ -911,7 +911,7 @@ "precision": 6, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "311091173110107856861649819128533077277" } @@ -922,7 +922,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "214920334981412447805621250067209749032" } @@ -933,7 +933,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "assetId": "108457044225666871745333730479173774551" } @@ -944,7 +944,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "189307976387032586987344677431204943363" } @@ -954,7 +954,7 @@ "symbol": "xcHKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "assetId": "76100021443485661246318545281171740067" } @@ -987,7 +987,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", "overridesCommon": true }, "externalApi": { @@ -1001,7 +1001,7 @@ } }, "color": "linear-gradient(135deg, #F2A007 19.29%, #A56B00 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -1041,11 +1041,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbase.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1287, "options": [ "ethereumBased", @@ -1095,10 +1095,10 @@ } ], "color": "linear-gradient(135deg, #987ED9 0%, #5132AA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/shiden.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", "overridesCommon": true }, "externalApi": { @@ -1124,7 +1124,7 @@ "assetId": 1, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -1139,7 +1139,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x0209", @@ -1154,7 +1154,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1168,7 +1168,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1182,7 +1182,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1195,7 +1195,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1209,7 +1209,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x0700000000", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1223,7 +1223,7 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x020a", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1237,7 +1237,7 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x0208", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1250,7 +1250,7 @@ "symbol": "vKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", "typeExtras": { "currencyIdScale": "0x0104", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1274,7 +1274,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -1296,7 +1296,7 @@ } }, "color": "linear-gradient(135deg, #3F3F3F 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -1310,7 +1310,7 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1324,7 +1324,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1338,7 +1338,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1362,7 +1362,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kintsugi.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", "overridesCommon": true }, "externalApi": { @@ -1372,7 +1372,7 @@ } }, "color": "linear-gradient(315deg, #180C2B 0%, #1E3258 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "addressPrefix": 2092 }, { @@ -1398,7 +1398,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, "explorers": [ @@ -1424,7 +1424,7 @@ } }, "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -1450,7 +1450,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial_solo.json", "overridesCommon": true }, "externalApi": { @@ -1460,7 +1460,7 @@ } }, "color": "linear-gradient(315deg, #720497 0%, #F50083 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -1472,7 +1472,7 @@ "assetId": 0, "symbol": "HKO", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" }, { "assetId": 1, @@ -1480,7 +1480,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "100" } @@ -1491,7 +1491,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "103" } @@ -1501,7 +1501,7 @@ "symbol": "LKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "assetId": "109" } @@ -1511,7 +1511,7 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", "typeExtras": { "assetId": "1000" } @@ -1522,7 +1522,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "107" } @@ -1533,7 +1533,7 @@ "precision": 18, "priceId": "moonriver", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "assetId": "113" } @@ -1544,7 +1544,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "115" } @@ -1555,7 +1555,7 @@ "precision": 9, "priceId": "genshiro", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "assetId": "123" } @@ -1576,7 +1576,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel_heiko.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", "overridesCommon": true }, "explorers": [ @@ -1594,7 +1594,7 @@ } }, "color": "linear-gradient(315deg, #3A55F5 8%, #04E2FF 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -1629,7 +1629,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/basilisk.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", "overridesCommon": true }, "externalApi": { @@ -1639,7 +1639,7 @@ } }, "color": "linear-gradient(315deg, #5B892B 0%, #97D92D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "addressPrefix": 10041 }, { @@ -1669,7 +1669,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/altair.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", "overridesCommon": true }, "explorers": [ @@ -1691,7 +1691,7 @@ } }, "color": "linear-gradient(315deg, #A37539 0%, #F5B840 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "addressPrefix": 136 }, { @@ -1704,7 +1704,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -1734,7 +1734,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/khala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", "overridesCommon": true }, "externalApi": { @@ -1744,7 +1744,7 @@ } }, "color": "linear-gradient(315deg, #0B8789 0%, #36F7FA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -1782,7 +1782,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", "overridesCommon": true }, "externalApi": { @@ -1792,7 +1792,7 @@ } }, "color": "linear-gradient(135deg, #F86842 0%, #8C175B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -1820,11 +1820,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38, "options": [ "testnet" @@ -1869,7 +1869,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", "overridesCommon": true }, "externalApi": { @@ -1879,7 +1879,7 @@ } }, "color": "linear-gradient(315deg, #5C09BA 0%, #C72F9E 58.33%, #FCA027 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 }, { @@ -1909,7 +1909,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/quartz.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", "overridesCommon": true }, "explorers": [ @@ -1931,7 +1931,7 @@ } }, "color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "addressPrefix": 255 }, { @@ -1956,7 +1956,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", "overridesCommon": true }, "externalApi": { @@ -1966,7 +1966,7 @@ } }, "color": "linear-gradient(315deg, #391BB5 0%, #DB3795 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "addressPrefix": 268 }, { @@ -1985,7 +1985,7 @@ "symbol": "LDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1999,7 +1999,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2013,7 +2013,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2026,7 +2026,7 @@ "symbol": "lcDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/lcDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2040,7 +2040,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2053,7 +2053,7 @@ "symbol": "PARA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2105,7 +2105,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", "overridesCommon": true }, "externalApi": { @@ -2115,7 +2115,7 @@ } }, "color": "linear-gradient(97.21deg, #E40C5B 0%, #645AFD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 10 }, { @@ -2133,7 +2133,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2159,11 +2159,11 @@ "testnet" ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala_mandala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 42 }, { @@ -2189,7 +2189,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -2200,7 +2200,7 @@ "precision": 12, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "110021739665376159354538090254163045594" } @@ -2211,7 +2211,7 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "224821240862170613278369189818311486111" } @@ -2240,7 +2240,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbeam.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", "overridesCommon": true }, "externalApi": { @@ -2254,7 +2254,7 @@ } }, "color": "linear-gradient(135deg, #53CBC8 0%, #11807D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -2277,7 +2277,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "340282366920938463463374607431768211455" } @@ -2310,7 +2310,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/astar.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", "overridesCommon": true }, "externalApi": { @@ -2320,7 +2320,7 @@ } }, "color": "linear-gradient(315deg, #DD037D 0%, #00B1FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", "addressPrefix": 5, "additional": { "defaultTip": "1000000" @@ -2335,7 +2335,7 @@ "assetId": 0, "symbol": "PARA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" }, { "assetId": 1, @@ -2343,7 +2343,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "101" } @@ -2354,7 +2354,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", "typeExtras": { "assetId": "1001" } @@ -2365,7 +2365,7 @@ "precision": 12, "priceId": "acala", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "108" } @@ -2376,7 +2376,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "104" } @@ -2386,7 +2386,7 @@ "symbol": "LDOT", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "assetId": "110" } @@ -2419,7 +2419,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", "overridesCommon": true }, "externalApi": { @@ -2429,7 +2429,7 @@ } }, "color": "linear-gradient(315deg, #5314F1 8%, #04E2FF 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 172 }, { @@ -2463,7 +2463,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/clover.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", "overridesCommon": true }, "externalApi": { @@ -2473,7 +2473,7 @@ } }, "color": "linear-gradient(315deg, #4AA7CA 0%, #56D5A7 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Clover.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", "addressPrefix": 128 }, { @@ -2486,7 +2486,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" } ], "nodes": [ @@ -2512,7 +2512,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -2522,7 +2522,7 @@ } }, "color": "linear-gradient(315deg, #23371A 0%, #89C62D 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 0 }, { @@ -2556,7 +2556,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/robonomics.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", "overridesCommon": true }, "externalApi": { @@ -2566,7 +2566,7 @@ } }, "color": "linear-gradient(315deg, #2A4ECB 0%, #4CABEC 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", "addressPrefix": 32 }, { @@ -2579,7 +2579,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -2593,7 +2593,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/encointer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", "overridesCommon": true }, "externalApi": { @@ -2603,7 +2603,7 @@ } }, "color": "linear-gradient(315deg, #001BC4 0%, #3F59FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Encointer.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Encointer.svg", "addressPrefix": 2 }, { @@ -2615,7 +2615,7 @@ "assetId": 0, "symbol": "PICA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" } ], "nodes": [ @@ -2637,7 +2637,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/picasso.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", "overridesCommon": true }, "externalApi": { @@ -2647,7 +2647,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", "addressPrefix": 49 }, { @@ -2659,7 +2659,7 @@ "assetId": 0, "symbol": "ZTG", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" } ], "nodes": [ @@ -2677,7 +2677,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/zeitgeist.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", "overridesCommon": true }, "externalApi": { @@ -2687,7 +2687,7 @@ } }, "color": "linear-gradient(315deg, #132849 0%, #2C5AA6 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", "addressPrefix": 73 }, { @@ -2699,7 +2699,7 @@ "assetId": 0, "symbol": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" } ], "nodes": [ @@ -2713,7 +2713,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kico.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", "overridesCommon": true }, "externalApi": { @@ -2723,7 +2723,7 @@ } }, "color": "linear-gradient(315deg, #248A63 0%, #58B18F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "addressPrefix": 42 }, { @@ -2736,7 +2736,7 @@ "symbol": "LIT", "precision": 12, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" } ], "nodes": [ @@ -2754,7 +2754,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litmus.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", "overridesCommon": true }, "externalApi": { @@ -2764,7 +2764,7 @@ } }, "color": "linear-gradient(315deg, #4A22E1 0%, #7657EF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg", "addressPrefix": 131 }, { @@ -2777,7 +2777,7 @@ "symbol": "CRAB", "precision": 18, "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" } ], "nodes": [ @@ -2799,7 +2799,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crab.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", "overridesCommon": true }, "externalApi": { @@ -2809,7 +2809,7 @@ } }, "color": "linear-gradient(315deg, #E6335B 0%, #0036F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "addressPrefix": 42 }, { @@ -2821,7 +2821,7 @@ "assetId": 0, "symbol": "SUB", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" } ], "nodes": [ @@ -2837,7 +2837,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", "overridesCommon": true }, "externalApi": { @@ -2847,7 +2847,7 @@ } }, "color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -2860,7 +2860,7 @@ "symbol": "CSM", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" } ], "nodes": [ @@ -2882,7 +2882,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crust_shadow.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", "overridesCommon": true }, "externalApi": { @@ -2892,7 +2892,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "addressPrefix": 66 }, { @@ -2905,7 +2905,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -2925,7 +2925,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", "overridesCommon": true }, "externalApi": { @@ -2935,7 +2935,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 47.14%, #91E3DA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -2948,7 +2948,7 @@ "symbol": "CFG", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" } ], "nodes": [ @@ -2974,7 +2974,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/centrifuge.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", "overridesCommon": true }, "externalApi": { @@ -2984,7 +2984,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", "addressPrefix": 36 }, { @@ -2997,7 +2997,7 @@ "symbol": "EFI", "precision": 18, "priceId": "efinity", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" } ], "nodes": [ @@ -3007,7 +3007,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/efinity.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", "overridesCommon": true }, "externalApi": { @@ -3017,7 +3017,7 @@ } }, "color": "linear-gradient(315.17deg, #4E6FD4 0%, #7B99F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg", "addressPrefix": 1110 }, { @@ -3029,7 +3029,7 @@ "assetId": 0, "symbol": "HDX", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" } ], "nodes": [ @@ -3039,7 +3039,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/hydra_dx.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", "overridesCommon": true }, "externalApi": { @@ -3049,7 +3049,7 @@ } }, "color": "linear-gradient(315.17deg, #081152 19.76%, #F569AD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", "addressPrefix": 63 }, { @@ -3061,7 +3061,7 @@ "assetId": 0, "symbol": "INTR", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0002", @@ -3075,7 +3075,7 @@ "symbol": "iBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0001", @@ -3089,7 +3089,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0000", @@ -3103,7 +3103,7 @@ "symbol": "KINT", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000c", @@ -3117,7 +3117,7 @@ "symbol": "kBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000b", @@ -3131,7 +3131,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000a", @@ -3152,7 +3152,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/interlay.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", "overridesCommon": true }, "externalApi": { @@ -3162,7 +3162,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "addressPrefix": 2032 }, { @@ -3174,7 +3174,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -3194,7 +3194,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -3204,7 +3204,7 @@ } }, "color": "linear-gradient(315.17deg, #50AA85 0%, #57C799 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -3215,7 +3215,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -3225,11 +3225,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/singular_testnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Testnet.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Testnet.svg", "addressPrefix": 0 }, { @@ -3242,7 +3242,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -3252,7 +3252,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -3262,7 +3262,7 @@ } }, "color": "linear-gradient(315deg, #78930F 0%, #D1F068 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "addressPrefix": 30 }, { @@ -3275,7 +3275,7 @@ "symbol": "TUR", "staking": "parachain", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" } ], "nodes": [ @@ -3289,7 +3289,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/turing.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", "overridesCommon": true }, "externalApi": { @@ -3299,7 +3299,7 @@ } }, "color": "linear-gradient(315deg, #B533B3 14.94%, #38EDF1 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", "addressPrefix": 51 }, { @@ -3312,7 +3312,7 @@ "staking": "relaychain", "priceId": "aleph-zero", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" } ], "nodes": [ @@ -3330,7 +3330,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/aleph_zero.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", "overridesCommon": true }, "externalApi": { @@ -3340,7 +3340,7 @@ } }, "color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", "addressPrefix": 42 }, { @@ -3352,7 +3352,7 @@ "assetId": 0, "symbol": "LAYR", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" } ], "nodes": [ @@ -3366,11 +3366,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/composable.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", "overridesCommon": true }, "color": "linear-gradient(315.17deg, #7A0354 13.48%, #8E0076 46.85%, #F139FE 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg", "addressPrefix": 49 }, { @@ -3383,7 +3383,7 @@ "priceId": "polkadex", "staking": "relaychain", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" } ], "nodes": [ @@ -3409,7 +3409,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadex.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", "overridesCommon": true }, "externalApi": { @@ -3423,7 +3423,7 @@ } }, "color": "linear-gradient(315deg, #2B2D36 23.96%, #606169 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg", "addressPrefix": 88 }, { @@ -3444,11 +3444,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/origintrail.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #B62EB1 0%, #E96CE5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/OriginTrail.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", "addressPrefix": 101 }, { @@ -3470,11 +3470,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", "overridesCommon": true }, "color": "linear-gradient(135deg, #D43079 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -3496,11 +3496,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litentry.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #0E7227 0%, #5CC774 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", "addressPrefix": 31 }, { @@ -3529,11 +3529,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/unique.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #267DEE 0%, #5FC2F9 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Unique.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", "addressPrefix": 7391 }, { @@ -3555,11 +3555,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/dorafactory.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #E04E02 0%, #FCB350 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/DoraFactory.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", "addressPrefix": 128 } ] diff --git a/chains/v4/chains.json b/chains/v4/chains.json index baaea367c..f2f43c799 100644 --- a/chains/v4/chains.json +++ b/chains/v4/chains.json @@ -13,16 +13,12 @@ "ramp": {}, "moonpay": {}, "transak": { - "network": "MAINNET" + "network": "MAINNET" } } } ], "nodes": [ - { - "url": "wss://polkadot-rpc.dwellir.com", - "name": "Dwellir node" - }, { "url": "wss://rpc.polkadot.io", "name": "Parity node" @@ -51,24 +47,24 @@ } ], "color": "linear-gradient(315deg, #D43079 0%, #F93C90 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", "overridesCommon": true }, "externalApi": { "staking": { "type": "subquery", - "url": "https://nova-polkadot.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" }, "history": { "type": "subquery", - "url": "https://nova-polkadot.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" } }, "options": [ @@ -130,24 +126,24 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", "overridesCommon": true }, "externalApi": { "staking": { "type": "subquery", - "url": "https://nova-kusama.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" }, "history": { "type": "subquery", - "url": "https://nova-kusama.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -192,24 +188,24 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", "overridesCommon": true }, "externalApi": { "staking": { "type": "subquery", - "url": "https://nova-westend.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" }, "history": { "type": "subquery", - "url": "https://nova-westend.gapi.subquery.network" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -226,7 +222,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama" }, { @@ -235,7 +231,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "8" } @@ -245,7 +241,7 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHAOS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", "typeExtras": { "assetId": "69420" } @@ -255,7 +251,7 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", "typeExtras": { "assetId": "567" } @@ -265,7 +261,7 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "88888" } @@ -275,28 +271,18 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", "typeExtras": { "assetId": "223" } }, - { - "assetId": 6, - "symbol": "ARIS", - "precision": 8, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", - "typeExtras": { - "assetId": "16" - } - }, { "assetId": 7, "symbol": "USDT", "precision": 4, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "11" } @@ -335,7 +321,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -345,7 +331,7 @@ } }, "color": "linear-gradient(315deg, #1C3816 0%, #4F6B49 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -363,7 +349,7 @@ "assetId": 1, "symbol": "aUSD", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "priceId": "tether", "type": "orml", "typeExtras": { @@ -377,7 +363,7 @@ "assetId": 2, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -392,7 +378,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x050000", @@ -406,7 +392,7 @@ "symbol": "BNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "priceId": "bifrost-native-coin", "typeExtras": { "currencyIdScale": "0x00a8", @@ -420,7 +406,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -434,7 +420,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -448,7 +434,7 @@ "precision": 12, "priceId": "kintsugi", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -462,7 +448,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -475,7 +461,7 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAI.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -488,7 +474,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -501,7 +487,7 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/taiKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -515,7 +501,7 @@ "precision": 18, "priceId": "quartz", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -523,26 +509,13 @@ "transfersEnabled": true } }, - { - "assetId": 13, - "symbol": "ARIS", - "precision": 8, - "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", - "typeExtras": { - "currencyIdScale": "0x050100", - "currencyIdType": "acala_primitives.currency.CurrencyId", - "existentialDeposit": "10000000", - "transfersEnabled": true - } - }, { "assetId": 14, "symbol": "MOVR", "precision": 18, "priceId": "moonriver", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -555,7 +528,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -569,7 +542,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -583,7 +556,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -597,7 +570,7 @@ "precision": 12, "priceId": "calamari-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "typeExtras": { "currencyIdScale": "0x050a00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -611,7 +584,7 @@ "precision": 12, "priceId": "integritee", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "typeExtras": { "currencyIdScale": "0x050800", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -624,7 +597,7 @@ "symbol": "KICO", "precision": 14, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "typeExtras": { "currencyIdScale": "0x050600", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -637,7 +610,7 @@ "symbol": "NEER", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "typeExtras": { "currencyIdScale": "0x050900", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -650,7 +623,7 @@ "symbol": "BSX", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "typeExtras": { "currencyIdScale": "0x050b00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -664,7 +637,7 @@ "precision": 18, "priceId": "altair", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -678,7 +651,7 @@ "precision": 9, "type": "orml", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "currencyIdScale": "0x050e00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -692,7 +665,7 @@ "precision": 9, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/EQD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", "typeExtras": { "currencyIdScale": "0x050f00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -706,7 +679,7 @@ "precision": 18, "type": "orml", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -716,33 +689,13 @@ } ], "nodes": [ - { - "url": "wss://karura-rpc-0.aca-api.network", - "name": "Acala Foundation node 0" - }, - { + { "url": "wss://karura.api.onfinality.io/public-ws", "name": "OnFinality node" - }, - { - "url": "wss://karura-rpc-1.aca-api.network", - "name": "Acala Foundation node 1" - }, - { - "url": "wss://karura-rpc-2.aca-api.network/ws", - "name": "Acala Foundation node 2" - }, - { - "url": "wss://karura-rpc-3.aca-api.network/ws", - "name": "Acala Foundation node 3" - }, - { - "url": "wss://karura-rpc.dwellir.com", - "name": "Dwellir node" } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -764,7 +717,7 @@ } }, "color": "linear-gradient(315.17deg, #E40C5B 0%, #FF4C3B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -780,7 +733,7 @@ "staking": "parachain", "buyProviders": { "transak": { - "network": "MAINNET" + "network": "MAINNET" } } }, @@ -790,7 +743,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -801,7 +754,7 @@ "precision": 12, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "110021739665376159354538090254163045594" } @@ -812,10 +765,20 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "224821240862170613278369189818311486111" } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } } ], "nodes": [ @@ -845,7 +808,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbeam.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", "overridesCommon": true }, "externalApi": { @@ -859,7 +822,7 @@ } }, "color": "linear-gradient(135deg, #53CBC8 0%, #11807D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -878,7 +841,7 @@ "staking": "parachain", "buyProviders": { "transak": { - "network": "MOONRIVER" + "network": "MOONRIVER" } } }, @@ -888,7 +851,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "182365888117048807484804376330534607370" } @@ -899,7 +862,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -910,7 +873,7 @@ "precision": 12, "priceId": "kintsugi", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "assetId": "175400718394635817552109270754364440562" } @@ -921,7 +884,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "10810581592933651521121702237638664357" } @@ -932,7 +895,7 @@ "precision": 12, "priceId": "bifrost-native-coin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "319623561105283008236062145480775032445" } @@ -943,7 +906,7 @@ "precision": 8, "priceId": "bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "assetId": "328179947973504579459046439826496046832" } @@ -954,7 +917,7 @@ "precision": 6, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "311091173110107856861649819128533077277" } @@ -965,7 +928,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "214920334981412447805621250067209749032" } @@ -976,7 +939,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "assetId": "108457044225666871745333730479173774551" } @@ -987,7 +950,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "189307976387032586987344677431204943363" } @@ -997,7 +960,7 @@ "symbol": "xcHKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "assetId": "76100021443485661246318545281171740067" } @@ -1008,7 +971,7 @@ "precision": 12, "priceId": "calamari-network", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "typeExtras": { "assetId": "213357169630950964874127107356898319277" } @@ -1019,7 +982,7 @@ "precision": 18, "priceId": "darwinia-crab-network", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "typeExtras": { "assetId": "173481220575862801646329923366065693029" } @@ -1030,7 +993,7 @@ "precision": 12, "priceId": "integritee", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "typeExtras": { "assetId": "105075627293246237499203909093923548958" } @@ -1067,7 +1030,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", "overridesCommon": true }, "externalApi": { @@ -1081,7 +1044,7 @@ } }, "color": "linear-gradient(135deg, #F2A007 19.29%, #A56B00 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -1132,10 +1095,10 @@ } }, "color": "linear-gradient(135deg, #987ED9 0%, #5132AA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/shiden.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", "overridesCommon": true } }, @@ -1154,7 +1117,7 @@ "assetId": 1, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -1169,7 +1132,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x0209", @@ -1184,7 +1147,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1198,7 +1161,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1212,7 +1175,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1225,7 +1188,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1239,7 +1202,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x0700000000", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1253,7 +1216,7 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x020a", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1267,7 +1230,7 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x0208", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1280,7 +1243,7 @@ "symbol": "vKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", "typeExtras": { "currencyIdScale": "0x0104", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1304,7 +1267,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -1326,7 +1289,7 @@ } }, "color": "linear-gradient(135deg, #3F3F3F 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -1361,7 +1324,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/basilisk.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", "overridesCommon": true }, "externalApi": { @@ -1371,7 +1334,7 @@ } }, "color": "linear-gradient(315deg, #5B892B 0%, #97D92D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "addressPrefix": 10041 }, { @@ -1415,11 +1378,11 @@ } }, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/altair.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #A37539 0%, #F5B840 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "addressPrefix": 136 }, { @@ -1431,7 +1394,7 @@ "assetId": 0, "symbol": "HKO", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" }, { "assetId": 1, @@ -1439,7 +1402,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "100" } @@ -1450,7 +1413,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "103" } @@ -1460,7 +1423,7 @@ "symbol": "LKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "assetId": "109" } @@ -1470,7 +1433,7 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", "typeExtras": { "assetId": "1000" } @@ -1481,7 +1444,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "107" } @@ -1492,7 +1455,7 @@ "precision": 18, "priceId": "moonriver", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "assetId": "113" } @@ -1503,7 +1466,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "115" } @@ -1514,7 +1477,7 @@ "precision": 9, "priceId": "genshiro", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "assetId": "123" } @@ -1531,7 +1494,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel_heiko.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", "overridesCommon": true }, "explorers": [ @@ -1549,7 +1512,7 @@ } }, "color": "linear-gradient(315deg, #3A55F5 8%, #04E2FF 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -1574,7 +1537,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, "explorers": [ @@ -1590,7 +1553,7 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -1603,7 +1566,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" }, { "assetId": 1, @@ -1611,7 +1574,7 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "0" } @@ -1622,7 +1585,7 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "1" } @@ -1633,7 +1596,7 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "2" } @@ -1644,7 +1607,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "assetId": "3" } @@ -1655,7 +1618,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "4" } @@ -1665,7 +1628,7 @@ "symbol": "BSX", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "typeExtras": { "assetId": "5" } @@ -1676,7 +1639,7 @@ "precision": 18, "priceId": "moonriver", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "assetId": "6" } @@ -1686,7 +1649,7 @@ "symbol": "HKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "assetId": "7" } @@ -1715,7 +1678,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/khala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", "overridesCommon": true }, "externalApi": { @@ -1725,7 +1688,7 @@ } }, "color": "linear-gradient(315deg, #0B8789 0%, #36F7FA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -1763,7 +1726,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", "overridesCommon": true }, "externalApi": { @@ -1773,7 +1736,7 @@ } }, "color": "linear-gradient(135deg, #F86842 0%, #8C175B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -1815,7 +1778,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", "overridesCommon": true }, "externalApi": { @@ -1825,7 +1788,7 @@ } }, "color": "linear-gradient(315deg, #5C09BA 0%, #C72F9E 58.33%, #FCA027 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 }, { @@ -1859,7 +1822,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/quartz.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", "overridesCommon": true }, "explorers": [ @@ -1881,7 +1844,7 @@ } }, "color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "addressPrefix": 255 }, { @@ -1906,7 +1869,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", "overridesCommon": true }, "externalApi": { @@ -1916,7 +1879,7 @@ } }, "color": "linear-gradient(315deg, #391BB5 0%, #DB3795 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "addressPrefix": 268 }, { @@ -1936,7 +1899,7 @@ "precision": 10, "priceId": "liquid-staking-dot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1950,7 +1913,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1964,7 +1927,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1978,7 +1941,7 @@ "precision": 10, "priceId": "liquid-crowdloan-dot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/lcDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -1992,7 +1955,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2005,7 +1968,7 @@ "symbol": "PARA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2018,7 +1981,7 @@ "symbol": "TAP", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAP.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", "typeExtras": { "currencyIdScale": "0x0004", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2031,7 +1994,7 @@ "symbol": "tDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/tDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2042,8 +2005,8 @@ ], "nodes": [ { - "url": "wss://acala-rpc-0.aca-api.network", - "name": "Acala Foundation 0 node" + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" }, { "url": "wss://acala-rpc-1.aca-api.network", @@ -2079,7 +2042,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", "overridesCommon": true }, "externalApi": { @@ -2089,7 +2052,7 @@ } }, "color": "linear-gradient(97.21deg, #E40C5B 0%, #645AFD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 10 }, { @@ -2101,7 +2064,12 @@ "assetId": 0, "symbol": "ASTR", "priceId": "astar", - "precision": 18 + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } }, { "assetId": 1, @@ -2109,7 +2077,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "340282366920938463463374607431768211455" } @@ -2138,7 +2106,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/astar.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", "overridesCommon": true }, "externalApi": { @@ -2148,7 +2116,7 @@ } }, "color": "linear-gradient(315deg, #DD037D 0%, #00B1FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", "addressPrefix": 5, "additional": { "defaultTip": "1000000" @@ -2163,7 +2131,7 @@ "assetId": 0, "symbol": "PARA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" }, { "assetId": 1, @@ -2171,7 +2139,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "101" } @@ -2182,7 +2150,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "1001" } @@ -2193,7 +2161,7 @@ "precision": 12, "priceId": "acala", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "108" } @@ -2204,7 +2172,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "104" } @@ -2215,10 +2183,21 @@ "precision": 10, "priceId": "liquid-staking-dot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "assetId": "110" } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } } ], "nodes": [ @@ -2244,7 +2223,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", "overridesCommon": true }, "externalApi": { @@ -2254,7 +2233,7 @@ } }, "color": "linear-gradient(315deg, #5314F1 8%, #04E2FF 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 172 }, { @@ -2288,7 +2267,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/clover.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", "overridesCommon": true }, "externalApi": { @@ -2298,7 +2277,7 @@ } }, "color": "linear-gradient(315deg, #4AA7CA 0%, #56D5A7 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Clover.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", "addressPrefix": 128 }, { @@ -2311,7 +2290,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" } ], "nodes": [ @@ -2337,7 +2316,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemint.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", "overridesCommon": true }, "externalApi": { @@ -2347,7 +2326,7 @@ } }, "color": "linear-gradient(315deg, #23371A 0%, #89C62D 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 0 }, { @@ -2373,11 +2352,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial_solo.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #720497 0%, #F50083 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -2411,7 +2390,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/robonomics.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", "overridesCommon": true }, "externalApi": { @@ -2421,7 +2400,7 @@ } }, "color": "linear-gradient(315deg, #2A4ECB 0%, #4CABEC 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", "addressPrefix": 32 }, { @@ -2434,7 +2413,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -2448,7 +2427,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/encointer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", "overridesCommon": true }, "externalApi": { @@ -2458,7 +2437,7 @@ } }, "color": "linear-gradient(315deg, #001BC4 0%, #3F59FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Encointer.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Encointer.svg", "addressPrefix": 2 }, { @@ -2472,7 +2451,7 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -2486,7 +2465,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -2500,7 +2479,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -2528,7 +2507,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kintsugi.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", "overridesCommon": true }, "externalApi": { @@ -2538,7 +2517,7 @@ } }, "color": "linear-gradient(315deg, #180C2B 0%, #1E3258 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "addressPrefix": 2092 }, { @@ -2550,7 +2529,7 @@ "assetId": 0, "symbol": "PICA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" } ], "nodes": [ @@ -2568,7 +2547,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/picasso.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", "overridesCommon": true }, "externalApi": { @@ -2578,7 +2557,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", "addressPrefix": 49 }, { @@ -2591,7 +2570,7 @@ "symbol": "ZTG", "precision": 10, "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" } ], "nodes": [ @@ -2621,7 +2600,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/zeitgeist.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", "overridesCommon": true }, "externalApi": { @@ -2631,7 +2610,7 @@ } }, "color": "linear-gradient(315deg, #132849 0%, #2C5AA6 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", "addressPrefix": 73 }, { @@ -2643,7 +2622,7 @@ "assetId": 0, "symbol": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" } ], "nodes": [ @@ -2657,7 +2636,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kico.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", "overridesCommon": true }, "externalApi": { @@ -2667,7 +2646,7 @@ } }, "color": "linear-gradient(315deg, #248A63 0%, #58B18F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "addressPrefix": 42 }, { @@ -2680,7 +2659,7 @@ "symbol": "LIT", "precision": 12, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" } ], "nodes": [ @@ -2702,7 +2681,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litmus.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", "overridesCommon": true }, "externalApi": { @@ -2712,7 +2691,7 @@ } }, "color": "linear-gradient(315deg, #4A22E1 0%, #7657EF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg", "addressPrefix": 131 }, { @@ -2725,7 +2704,7 @@ "symbol": "CRAB", "precision": 18, "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" } ], "nodes": [ @@ -2747,7 +2726,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crab.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", "overridesCommon": true }, "externalApi": { @@ -2757,7 +2736,7 @@ } }, "color": "linear-gradient(315deg, #E6335B 0%, #0036F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "addressPrefix": 42 }, { @@ -2769,7 +2748,7 @@ "assetId": 0, "symbol": "SUB", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" } ], "nodes": [ @@ -2785,7 +2764,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", "overridesCommon": true }, "externalApi": { @@ -2795,7 +2774,7 @@ } }, "color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -2808,7 +2787,7 @@ "symbol": "CSM", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" } ], "nodes": [ @@ -2830,7 +2809,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crust_shadow.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", "overridesCommon": true }, "externalApi": { @@ -2840,7 +2819,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "addressPrefix": 66 }, { @@ -2853,7 +2832,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -2879,7 +2858,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", "overridesCommon": true }, "externalApi": { @@ -2889,7 +2868,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 47.14%, #91E3DA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -2902,7 +2881,7 @@ "symbol": "CFG", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" } ], "nodes": [ @@ -2924,7 +2903,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/centrifuge.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", "overridesCommon": true }, "externalApi": { @@ -2934,7 +2913,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", "addressPrefix": 36 }, { @@ -2947,7 +2926,7 @@ "symbol": "EFI", "precision": 18, "priceId": "efinity", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" } ], "nodes": [ @@ -2957,7 +2936,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/efinity.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", "overridesCommon": true }, "externalApi": { @@ -2967,7 +2946,7 @@ } }, "color": "linear-gradient(315.17deg, #4E6FD4 0%, #7B99F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg", "addressPrefix": 1110 }, { @@ -2979,7 +2958,7 @@ "assetId": 0, "symbol": "HDX", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" } ], "nodes": [ @@ -2989,7 +2968,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/hydra_dx.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", "overridesCommon": true }, "externalApi": { @@ -2999,7 +2978,7 @@ } }, "color": "linear-gradient(315.17deg, #081152 19.76%, #F569AD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", "addressPrefix": 63 }, { @@ -3012,7 +2991,7 @@ "symbol": "INTR", "precision": 10, "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0002", @@ -3026,7 +3005,7 @@ "symbol": "iBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0001", @@ -3040,7 +3019,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0000", @@ -3054,7 +3033,7 @@ "symbol": "KINT", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000c", @@ -3068,7 +3047,7 @@ "symbol": "kBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000b", @@ -3082,7 +3061,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000a", @@ -3111,7 +3090,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/interlay.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", "overridesCommon": true }, "externalApi": { @@ -3121,7 +3100,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "addressPrefix": 2032 }, { @@ -3133,7 +3112,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -3159,7 +3138,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -3169,7 +3148,7 @@ } }, "color": "linear-gradient(315.17deg, #50AA85 0%, #57C799 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -3182,7 +3161,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -3200,7 +3179,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/phala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", "overridesCommon": true }, "externalApi": { @@ -3210,7 +3189,7 @@ } }, "color": "linear-gradient(315deg, #78930F 0%, #D1F068 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "addressPrefix": 30 }, { @@ -3223,7 +3202,7 @@ "symbol": "TUR", "staking": "turing", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" }, { "assetId": 1, @@ -3231,7 +3210,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x01", "currencyIdType": "turing_runtime.CurrencyId", @@ -3245,7 +3224,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x02", "currencyIdType": "turing_runtime.CurrencyId", @@ -3259,7 +3238,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x03", "currencyIdType": "turing_runtime.CurrencyId", @@ -3272,7 +3251,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "currencyIdScale": "0x04", "currencyIdType": "turing_runtime.CurrencyId", @@ -3285,7 +3264,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "currencyIdScale": "0x05", "currencyIdType": "turing_runtime.CurrencyId", @@ -3298,7 +3277,7 @@ "symbol": "sKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", "typeExtras": { "currencyIdScale": "0x06", "currencyIdType": "turing_runtime.CurrencyId", @@ -3312,7 +3291,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x07", "currencyIdType": "turing_runtime.CurrencyId", @@ -3322,17 +3301,17 @@ } ], "nodes": [ - { - "url": "wss://turing.api.onfinality.io/public-ws", - "name": "OnFinality node" - }, { "url": "wss://rpc.turing.oak.tech", "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/turing.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", "overridesCommon": true }, "explorers": [ @@ -3354,7 +3333,7 @@ } }, "color": "linear-gradient(315deg, #B533B3 14.94%, #38EDF1 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", "addressPrefix": 51 }, { @@ -3367,7 +3346,7 @@ "priceId": "aleph-zero", "staking": "aleph-zero", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" } ], "nodes": [ @@ -3385,7 +3364,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/aleph_zero.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", "overridesCommon": true }, "externalApi": { @@ -3399,7 +3378,7 @@ } }, "color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", "addressPrefix": 42 }, { @@ -3411,7 +3390,7 @@ "assetId": 0, "symbol": "LAYR", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" } ], "nodes": [ @@ -3433,7 +3412,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/composable.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", "overridesCommon": true }, "externalApi": { @@ -3443,7 +3422,7 @@ } }, "color": "linear-gradient(315.17deg, #7A0354 13.48%, #8E0076 46.85%, #F139FE 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg", "addressPrefix": 49 }, { @@ -3456,7 +3435,7 @@ "priceId": "polkadex", "staking": "relaychain", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" } ], "nodes": [ @@ -3482,7 +3461,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadex.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", "overridesCommon": true }, "externalApi": { @@ -3496,7 +3475,7 @@ } }, "color": "linear-gradient(315deg, #2B2D36 23.96%, #606169 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg", "addressPrefix": 88 }, { @@ -3517,7 +3496,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/origintrail.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", "overridesCommon": true }, "externalApi": { @@ -3527,7 +3506,7 @@ } }, "color": "linear-gradient(315deg, #B62EB1 0%, #E96CE5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/OriginTrail.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", "addressPrefix": 101 }, { @@ -3549,7 +3528,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", "overridesCommon": true }, "externalApi": { @@ -3559,7 +3538,7 @@ } }, "color": "linear-gradient(135deg, #D43079 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -3581,7 +3560,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litentry.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", "overridesCommon": true }, "externalApi": { @@ -3591,7 +3570,7 @@ } }, "color": "linear-gradient(315deg, #0E7227 0%, #5CC774 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", "addressPrefix": 31 }, { @@ -3628,7 +3607,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/unique.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", "overridesCommon": true }, "externalApi": { @@ -3638,7 +3617,7 @@ } }, "color": "linear-gradient(315deg, #267DEE 0%, #5FC2F9 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Unique.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", "addressPrefix": 7391 }, { @@ -3660,7 +3639,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/dorafactory.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", "overridesCommon": true }, "externalApi": { @@ -3670,7 +3649,7 @@ } }, "color": "linear-gradient(315deg, #E04E02 0%, #FCB350 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/DoraFactory.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", "addressPrefix": 128 }, { @@ -3682,7 +3661,7 @@ "assetId": 0, "symbol": "MGX", "precision": 18, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/MangataX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x00000000", @@ -3696,7 +3675,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x04000000", @@ -3710,7 +3689,7 @@ "symbol": "ETH", "precision": 18, "priceId": "ethereum", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ETH.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x01000000", @@ -3739,11 +3718,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/mangatax.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #009F80 24.99%, #95E7D7 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/MangataX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", "addressPrefix": 42 }, { @@ -3764,7 +3743,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/pichiu.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", "overridesCommon": true }, "externalApi": { @@ -3774,7 +3753,7 @@ } }, "color": "linear-gradient(315deg, #A91056 0%, #F34594 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Pichiu.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg", "addressPrefix": 42 }, { @@ -3795,7 +3774,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kabocha.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", "overridesCommon": true }, "externalApi": { @@ -3805,7 +3784,7 @@ } }, "color": "linear-gradient(315deg, #C9B904 0%, #D3CD4A 66.15%, #FDF775 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kabocha.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg", "addressPrefix": 27 }, { @@ -3827,7 +3806,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/tanganika.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", "overridesCommon": true }, "externalApi": { @@ -3837,7 +3816,7 @@ } }, "color": "linear-gradient(315deg, #7D20BF 15.1%, #584DDB 57.81%, #51BEF9 94.27%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/DataHighway.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", "addressPrefix": 33 }, { @@ -3858,11 +3837,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bajun.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #DF5262 16.15%, #EC725D 53.13%, #F38861 75.32%, #3F3F3F 75.41%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bajun.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", "addressPrefix": 1337 }, { @@ -3883,11 +3862,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/imbue.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", "overridesCommon": true }, "color": "linear-gradient(315.17deg, #7CB00B 12.5%, #B5FF14 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Imbue.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg", "addressPrefix": 42 } ] diff --git a/chains/v4/chains_dev.json b/chains/v4/chains_dev.json index eeb8b93f8..3ada39ece 100644 --- a/chains/v4/chains_dev.json +++ b/chains/v4/chains_dev.json @@ -10,9 +10,9 @@ "priceId": "polkadot", "staking": "relaychain", "buyProviders": { - "ramp": {}, - "moonpay": {}, - "transak": { + "ramp": {}, + "moonpay": {}, + "transak": { "network": "MAINNET" } } @@ -51,10 +51,10 @@ } ], "color": "linear-gradient(315deg, #D43079 0%, #F93C90 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "addressPrefix": 0, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", "overridesCommon": true }, "externalApi": { @@ -68,7 +68,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/polkadot-dev.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" } }, "options": [ @@ -130,10 +130,10 @@ } ], "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "addressPrefix": 2, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kusama.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", "overridesCommon": true }, "externalApi": { @@ -147,7 +147,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/kusama.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" } }, "options": [ @@ -192,10 +192,10 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westend.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", "overridesCommon": true }, "externalApi": { @@ -209,7 +209,7 @@ }, "crowdloans": { "type": "github", - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/crowdloan/westend.json" + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" } }, "options": [ @@ -225,7 +225,7 @@ "assetId": 0, "symbol": "WND", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Westend.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" }, { "assetId": 1, @@ -256,18 +256,12 @@ } ], "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 42, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/westmint.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", "overridesCommon": true }, - "externalApi": { - "history": { - "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westmint" - } - }, "options": [ "testnet" ] @@ -281,7 +275,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama" }, { @@ -290,7 +284,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "8" } @@ -300,7 +294,7 @@ "symbol": "CHAOS", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHAOS.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", "typeExtras": { "assetId": "69420" } @@ -310,7 +304,7 @@ "symbol": "CHRWNA", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", "typeExtras": { "assetId": "567" } @@ -320,7 +314,7 @@ "symbol": "SHIBATALES", "precision": 0, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Default.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", "typeExtras": { "assetId": "88888" } @@ -330,28 +324,18 @@ "symbol": "BILLCOIN", "precision": 8, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", "typeExtras": { "assetId": "223" } }, - { - "assetId": 6, - "symbol": "ARIS", - "precision": 8, - "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", - "typeExtras": { - "assetId": "16" - } - }, { "assetId": 7, "symbol": "USDT", "precision": 4, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "11" } @@ -390,7 +374,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", "overridesCommon": true }, "externalApi": { @@ -400,7 +384,7 @@ } }, "color": "linear-gradient(315deg, #1C3816 0%, #4F6B49 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 2 }, { @@ -418,7 +402,7 @@ "assetId": 1, "symbol": "aUSD", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "priceId": "tether", "type": "orml", "typeExtras": { @@ -432,7 +416,7 @@ "assetId": 2, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -447,7 +431,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x050000", @@ -461,7 +445,7 @@ "symbol": "BNC", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "priceId": "bifrost-native-coin", "typeExtras": { "currencyIdScale": "0x00a8", @@ -475,7 +459,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "currencyIdScale": "0x0083", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -489,7 +473,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x00aa", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -503,7 +487,7 @@ "precision": 12, "priceId": "kintsugi", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x00ab", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -517,7 +501,7 @@ "precision": 8, "priceId": "bitcoin", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x00ac", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -530,7 +514,7 @@ "symbol": "TAI", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAI.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", "typeExtras": { "currencyIdScale": "0x0084", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -543,7 +527,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x00a9", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -556,7 +540,7 @@ "symbol": "taiKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/taiKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -570,7 +554,7 @@ "precision": 18, "priceId": "quartz", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "typeExtras": { "currencyIdScale": "0x050200", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -578,26 +562,13 @@ "transfersEnabled": true } }, - { - "assetId": 13, - "symbol": "ARIS", - "precision": 8, - "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ARIS.svg", - "typeExtras": { - "currencyIdScale": "0x050100", - "currencyIdType": "acala_primitives.currency.CurrencyId", - "existentialDeposit": "10000000", - "transfersEnabled": true - } - }, { "assetId": 14, "symbol": "MOVR", "precision": 18, "priceId": "moonriver", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x050300", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -610,7 +581,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "currencyIdScale": "0x050400", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -624,7 +595,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "currencyIdScale": "0x050500", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -638,7 +609,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x050700", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -652,7 +623,7 @@ "precision": 12, "priceId": "calamari-network", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "typeExtras": { "currencyIdScale": "0x050a00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -666,7 +637,7 @@ "precision": 12, "priceId": "integritee", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "typeExtras": { "currencyIdScale": "0x050800", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -679,7 +650,7 @@ "symbol": "KICO", "precision": 14, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "typeExtras": { "currencyIdScale": "0x050600", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -692,7 +663,7 @@ "symbol": "NEER", "precision": 18, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "typeExtras": { "currencyIdScale": "0x050900", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -705,7 +676,7 @@ "symbol": "BSX", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "typeExtras": { "currencyIdScale": "0x050b00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -719,7 +690,7 @@ "precision": 18, "priceId": "altair", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "typeExtras": { "currencyIdScale": "0x050c00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -733,7 +704,7 @@ "precision": 9, "type": "orml", "priceId": "genshiro", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "currencyIdScale": "0x050e00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -747,7 +718,7 @@ "precision": 9, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/EQD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", "typeExtras": { "currencyIdScale": "0x050f00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -761,7 +732,7 @@ "precision": 18, "type": "orml", "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "typeExtras": { "currencyIdScale": "0x050d00", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -797,7 +768,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/karura.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", "overridesCommon": true }, "explorers": [ @@ -819,7 +790,7 @@ } }, "color": "linear-gradient(315.17deg, #E40C5B 0%, #FF4C3B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "addressPrefix": 8 }, { @@ -834,7 +805,7 @@ "priceId": "moonriver", "staking": "parachain", "buyProviders": { - "transak": { + "transak": { "network": "MOONRIVER" } } @@ -845,7 +816,7 @@ "precision": 10, "priceId": "rmrk", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "typeExtras": { "assetId": "182365888117048807484804376330534607370" } @@ -856,7 +827,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -867,7 +838,7 @@ "precision": 12, "priceId": "kintsugi", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "assetId": "175400718394635817552109270754364440562" } @@ -878,7 +849,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "10810581592933651521121702237638664357" } @@ -889,7 +860,7 @@ "precision": 12, "priceId": "bifrost-native-coin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "319623561105283008236062145480775032445" } @@ -900,7 +871,7 @@ "precision": 8, "priceId": "bitcoin", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "assetId": "328179947973504579459046439826496046832" } @@ -911,7 +882,7 @@ "precision": 6, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "assetId": "311091173110107856861649819128533077277" } @@ -922,7 +893,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "214920334981412447805621250067209749032" } @@ -933,7 +904,7 @@ "precision": 12, "priceId": "crust-storage-market", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "typeExtras": { "assetId": "108457044225666871745333730479173774551" } @@ -944,7 +915,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "189307976387032586987344677431204943363" } @@ -954,7 +925,7 @@ "symbol": "xcHKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "assetId": "76100021443485661246318545281171740067" } @@ -965,7 +936,7 @@ "precision": 12, "priceId": "calamari-network", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "typeExtras": { "assetId": "213357169630950964874127107356898319277" } @@ -976,7 +947,7 @@ "precision": 18, "priceId": "darwinia-crab-network", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "typeExtras": { "assetId": "173481220575862801646329923366065693029" } @@ -987,13 +958,17 @@ "precision": 12, "priceId": "integritee", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "typeExtras": { "assetId": "105075627293246237499203909093923548958" } } ], "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, { "url": "wss://moonriver.api.onfinality.io/public-ws", "name": "OnFinality node" @@ -1024,7 +999,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonriver.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", "overridesCommon": true }, "externalApi": { @@ -1038,7 +1013,7 @@ } }, "color": "linear-gradient(135deg, #F2A007 19.29%, #A56B00 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1285, "options": [ "ethereumBased" @@ -1088,11 +1063,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbase.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 1287, "options": [ "ethereumBased", @@ -1142,16 +1117,16 @@ } ], "color": "linear-gradient(135deg, #987ED9 0%, #5132AA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "addressPrefix": 5, "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/shiden.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", "overridesCommon": true }, "externalApi": { "history": { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden__bm92Y" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" } } }, @@ -1171,7 +1146,7 @@ "assetId": 1, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "priceId": "kusama", "type": "orml", "typeExtras": { @@ -1186,7 +1161,7 @@ "symbol": "RMRK", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/RMRK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", "priceId": "rmrk", "typeExtras": { "currencyIdScale": "0x0209", @@ -1201,7 +1176,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "currencyIdScale": "0x0207", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1215,7 +1190,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x0206", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1229,7 +1204,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0302", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1242,7 +1217,7 @@ "symbol": "vsKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vsKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", "typeExtras": { "currencyIdScale": "0x0404", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1256,7 +1231,7 @@ "precision": 6, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/USDT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", "typeExtras": { "currencyIdScale": "0x0700000000", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1270,7 +1245,7 @@ "precision": 18, "type": "orml", "priceId": "moonriver", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "currencyIdScale": "0x020a", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1284,7 +1259,7 @@ "precision": 12, "type": "orml", "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x0208", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1297,7 +1272,7 @@ "symbol": "vKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/vKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", "typeExtras": { "currencyIdScale": "0x0104", "currencyIdType": "node_primitives.currency.CurrencyId", @@ -1321,7 +1296,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", "overridesCommon": true }, "explorers": [ @@ -1343,7 +1318,7 @@ } }, "color": "linear-gradient(135deg, #3F3F3F 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -1357,7 +1332,7 @@ "precision": 12, "type": "orml", "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "typeExtras": { "currencyIdScale": "0x000c", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1371,7 +1346,7 @@ "precision": 8, "type": "orml", "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "typeExtras": { "currencyIdScale": "0x000b", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1385,7 +1360,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x000a", "currencyIdType": "interbtc_primitives.CurrencyId", @@ -1413,7 +1388,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kintsugi.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", "overridesCommon": true }, "externalApi": { @@ -1423,7 +1398,7 @@ } }, "color": "linear-gradient(315deg, #180C2B 0%, #1E3258 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "addressPrefix": 2092 }, { @@ -1449,7 +1424,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/types/edgeware.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/types/edgeware.json", "overridesCommon": false }, "explorers": [ @@ -1475,7 +1450,7 @@ } }, "color": "linear-gradient(315deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Edgeware.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", "addressPrefix": 7 }, { @@ -1501,7 +1476,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial_solo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial_solo.json", "overridesCommon": true }, "externalApi": { @@ -1511,7 +1486,7 @@ } }, "color": "linear-gradient(315deg, #720497 0%, #F50083 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -1523,7 +1498,7 @@ "assetId": 0, "symbol": "HKO", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" }, { "assetId": 1, @@ -1531,7 +1506,7 @@ "precision": 12, "priceId": "kusama", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "100" } @@ -1542,7 +1517,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "103" } @@ -1552,7 +1527,7 @@ "symbol": "LKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "assetId": "109" } @@ -1562,7 +1537,7 @@ "symbol": "sKSM", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", "typeExtras": { "assetId": "1000" } @@ -1573,7 +1548,7 @@ "precision": 12, "priceId": "karura", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "107" } @@ -1584,7 +1559,7 @@ "precision": 18, "priceId": "moonriver", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "assetId": "113" } @@ -1595,7 +1570,7 @@ "precision": 12, "priceId": "pha", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "typeExtras": { "assetId": "115" } @@ -1606,7 +1581,7 @@ "precision": 9, "priceId": "genshiro", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", "typeExtras": { "assetId": "123" } @@ -1627,7 +1602,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel_heiko.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", "overridesCommon": true }, "explorers": [ @@ -1645,7 +1620,7 @@ } }, "color": "linear-gradient(315deg, #3A55F5 8%, #04E2FF 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 110 }, { @@ -1680,7 +1655,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/basilisk.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", "overridesCommon": true }, "externalApi": { @@ -1690,7 +1665,7 @@ } }, "color": "linear-gradient(315deg, #5B892B 0%, #97D92D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "addressPrefix": 10041 }, { @@ -1720,7 +1695,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/altair.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", "overridesCommon": true }, "explorers": [ @@ -1742,7 +1717,7 @@ } }, "color": "linear-gradient(315deg, #A37539 0%, #F5B840 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", "addressPrefix": 136 }, { @@ -1755,7 +1730,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" }, { "assetId": 1, @@ -1763,7 +1738,7 @@ "precision": 12, "type": "statemine", "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "assetId": "0" } @@ -1774,7 +1749,7 @@ "precision": 12, "type": "statemine", "priceId": "karura", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "assetId": "1" } @@ -1785,7 +1760,7 @@ "precision": 12, "type": "statemine", "priceId": "bifrost-native-coin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "typeExtras": { "assetId": "2" } @@ -1796,7 +1771,7 @@ "precision": 18, "priceId": "zenlink-network-token", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ZLK.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", "typeExtras": { "assetId": "3" } @@ -1807,7 +1782,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "4" } @@ -1817,7 +1792,7 @@ "symbol": "BSX", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", "typeExtras": { "assetId": "9" } @@ -1828,7 +1803,7 @@ "precision": 18, "priceId": "moonriver", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "typeExtras": { "assetId": "6" } @@ -1838,7 +1813,7 @@ "symbol": "HKO", "precision": 12, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "assetId": "7" } @@ -1849,7 +1824,7 @@ "precision": 12, "priceId": "calamari-network", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "typeExtras": { "assetId": "8" } @@ -1859,7 +1834,7 @@ "symbol": "TUR", "precision": 10, "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", "typeExtras": { "assetId": "10" } @@ -1892,7 +1867,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/khala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", "overridesCommon": true }, "externalApi": { @@ -1902,7 +1877,7 @@ } }, "color": "linear-gradient(315deg, #0B8789 0%, #36F7FA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "addressPrefix": 30 }, { @@ -1940,7 +1915,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", "overridesCommon": true }, "externalApi": { @@ -1950,7 +1925,7 @@ } }, "color": "linear-gradient(135deg, #F86842 0%, #8C175B 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38 }, { @@ -1978,11 +1953,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", "addressPrefix": 38, "options": [ "testnet" @@ -2027,7 +2002,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/calamari.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", "overridesCommon": true }, "externalApi": { @@ -2037,7 +2012,7 @@ } }, "color": "linear-gradient(315deg, #5C09BA 0%, #C72F9E 58.33%, #FCA027 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", "addressPrefix": 78 }, { @@ -2071,7 +2046,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/quartz.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", "overridesCommon": true }, "explorers": [ @@ -2093,7 +2068,7 @@ } }, "color": "linear-gradient(315deg, #CB2E41 0%, #ED5B6D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", "addressPrefix": 255 }, { @@ -2118,7 +2093,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", "overridesCommon": true }, "externalApi": { @@ -2128,7 +2103,7 @@ } }, "color": "linear-gradient(315deg, #391BB5 0%, #DB3795 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", "addressPrefix": 268 }, { @@ -2148,7 +2123,7 @@ "precision": 10, "priceId": "liquid-staking-dot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "currencyIdScale": "0x0003", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2162,7 +2137,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x0001", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2176,7 +2151,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2190,7 +2165,7 @@ "precision": 10, "priceId": "liquid-crowdloan-dot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/lcDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", "typeExtras": { "currencyIdScale": "0x040d000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2204,7 +2179,7 @@ "precision": 18, "priceId": "moonbeam", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "typeExtras": { "currencyIdScale": "0x050000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2217,7 +2192,7 @@ "symbol": "PARA", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", "typeExtras": { "currencyIdScale": "0x050100", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2230,7 +2205,7 @@ "symbol": "TAP", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/TAP.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", "typeExtras": { "currencyIdScale": "0x0004", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2243,7 +2218,7 @@ "symbol": "tDOT", "precision": 10, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/tDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", "typeExtras": { "currencyIdScale": "0x0300000000", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2253,6 +2228,10 @@ } ], "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, { "url": "wss://acala-rpc-0.aca-api.network", "name": "Acala Foundation 0 node" @@ -2276,10 +2255,6 @@ { "url": "wss://acala-polkadot.api.onfinality.io/public-ws", "name": "OnFinality node" - }, - { - "url": "wss://acala-rpc.dwellir.com", - "name": "Dwellir node" } ], "explorers": [ @@ -2295,7 +2270,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", "overridesCommon": true }, "externalApi": { @@ -2305,7 +2280,7 @@ } }, "color": "linear-gradient(97.21deg, #E40C5B 0%, #645AFD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 10 }, { @@ -2323,7 +2298,7 @@ "precision": 10, "priceId": "polkadot", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "currencyIdScale": "0x0002", "currencyIdType": "acala_primitives.currency.CurrencyId", @@ -2349,11 +2324,11 @@ "testnet" ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/acala_mandala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "addressPrefix": 42 }, { @@ -2369,7 +2344,7 @@ "staking": "parachain", "buyProviders": { "transak": { - "network": "MAINNET" + "network": "MAINNET" } } }, @@ -2379,7 +2354,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "42259045809535163221576417993425387648" } @@ -2390,7 +2365,7 @@ "precision": 12, "type": "statemine", "priceId": "tether", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "110021739665376159354538090254163045594" } @@ -2401,10 +2376,20 @@ "precision": 12, "type": "statemine", "priceId": "acala", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "224821240862170613278369189818311486111" } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } } ], "nodes": [ @@ -2434,7 +2419,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbeam.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", "overridesCommon": true }, "externalApi": { @@ -2448,7 +2433,7 @@ } }, "color": "linear-gradient(135deg, #53CBC8 0%, #11807D 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", "addressPrefix": 1284, "options": [ "ethereumBased" @@ -2463,7 +2448,12 @@ "assetId": 0, "symbol": "ASTR", "priceId": "astar", - "precision": 18 + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } }, { "assetId": 1, @@ -2471,7 +2461,7 @@ "precision": 10, "type": "statemine", "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "340282366920938463463374607431768211455" } @@ -2504,17 +2494,17 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/astar.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", "overridesCommon": true }, "externalApi": { "history": { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar__bm92Y" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" } }, "color": "linear-gradient(315deg, #DD037D 0%, #00B1FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", "addressPrefix": 5, "additional": { "defaultTip": "1000000" @@ -2529,7 +2519,7 @@ "assetId": 0, "symbol": "PARA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/PARA.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" }, { "assetId": 1, @@ -2537,7 +2527,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "typeExtras": { "assetId": "101" } @@ -2548,7 +2538,7 @@ "precision": 10, "priceId": "polkadot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", "typeExtras": { "assetId": "1001" } @@ -2559,7 +2549,7 @@ "precision": 12, "priceId": "acala", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", "typeExtras": { "assetId": "108" } @@ -2570,7 +2560,7 @@ "precision": 12, "priceId": "tether", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "assetId": "104" } @@ -2581,10 +2571,21 @@ "precision": 10, "priceId": "liquid-staking-dot", "type": "statemine", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LDOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", "typeExtras": { "assetId": "110" } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } } ], "nodes": [ @@ -2614,7 +2615,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/parallel.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", "overridesCommon": true }, "externalApi": { @@ -2624,7 +2625,7 @@ } }, "color": "linear-gradient(315deg, #5314F1 8%, #04E2FF 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Parallel-Heiko.svg", "addressPrefix": 172 }, { @@ -2658,7 +2659,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/clover.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", "overridesCommon": true }, "externalApi": { @@ -2668,7 +2669,7 @@ } }, "color": "linear-gradient(315deg, #4AA7CA 0%, #56D5A7 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Clover.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", "addressPrefix": 128 }, { @@ -2681,7 +2682,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" } ], "nodes": [ @@ -2707,7 +2708,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/statemint.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", "overridesCommon": true }, "externalApi": { @@ -2717,7 +2718,7 @@ } }, "color": "linear-gradient(315deg, #23371A 0%, #89C62D 75%, #D43079 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Statemine-Statemint.svg", "addressPrefix": 0 }, { @@ -2751,7 +2752,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/robonomics.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", "overridesCommon": true }, "externalApi": { @@ -2761,7 +2762,7 @@ } }, "color": "linear-gradient(315deg, #2A4ECB 0%, #4CABEC 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", "addressPrefix": 32 }, { @@ -2774,7 +2775,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -2796,7 +2797,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/encointer.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", "overridesCommon": true }, "externalApi": { @@ -2806,7 +2807,7 @@ } }, "color": "linear-gradient(315deg, #001BC4 0%, #3F59FF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Encointer.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Encointer.svg", "addressPrefix": 2 }, { @@ -2818,7 +2819,7 @@ "assetId": 0, "symbol": "PICA", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" } ], "nodes": [ @@ -2840,7 +2841,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/picasso.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", "overridesCommon": true }, "externalApi": { @@ -2850,7 +2851,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Picasso.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg", "addressPrefix": 49 }, { @@ -2864,7 +2865,7 @@ "staking": "parachain", "precision": 10, "priceId": "zeitgeist", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" } ], "nodes": [ @@ -2882,7 +2883,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/zeitgeist.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", "overridesCommon": true }, "explorers": [ @@ -2908,7 +2909,7 @@ } }, "color": "linear-gradient(315deg, #132849 0%, #2C5AA6 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Zeitgeist.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg", "addressPrefix": 73 }, { @@ -2920,7 +2921,7 @@ "assetId": 0, "symbol": "KICO", "precision": 14, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" } ], "nodes": [ @@ -2934,7 +2935,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kico.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", "overridesCommon": true }, "externalApi": { @@ -2944,7 +2945,7 @@ } }, "color": "linear-gradient(315deg, #248A63 0%, #58B18F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KICO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", "addressPrefix": 42 }, { @@ -2957,7 +2958,7 @@ "symbol": "LIT", "precision": 12, "priceId": "litentry", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" } ], "nodes": [ @@ -2979,7 +2980,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litmus.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", "overridesCommon": true }, "externalApi": { @@ -2989,7 +2990,7 @@ } }, "color": "linear-gradient(315deg, #4A22E1 0%, #7657EF 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litmus.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litmus.svg", "addressPrefix": 131 }, { @@ -3002,7 +3003,7 @@ "symbol": "CRAB", "precision": 18, "priceId": "darwinia-crab-network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" } ], "nodes": [ @@ -3024,7 +3025,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crab.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", "overridesCommon": true }, "externalApi": { @@ -3034,7 +3035,7 @@ } }, "color": "linear-gradient(315deg, #E6335B 0%, #0036F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Crab.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", "addressPrefix": 42 }, { @@ -3046,7 +3047,7 @@ "assetId": 0, "symbol": "SUB", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" } ], "nodes": [ @@ -3062,7 +3063,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/subsocial.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", "overridesCommon": true }, "externalApi": { @@ -3072,7 +3073,7 @@ } }, "color": "linear-gradient(315deg, #0C0011 0%, #681391 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "addressPrefix": 28 }, { @@ -3085,7 +3086,7 @@ "symbol": "CSM", "precision": 12, "priceId": "crust-storage-market", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" } ], "nodes": [ @@ -3107,7 +3108,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/crust_shadow.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", "overridesCommon": true }, "externalApi": { @@ -3117,7 +3118,7 @@ } }, "color": "linear-gradient(315deg, #D57923 0%, #F8A65A 75%, #3F3F3F 75.01%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/CrustShadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", "addressPrefix": 66 }, { @@ -3130,7 +3131,7 @@ "symbol": "TEER", "precision": 12, "priceId": "integritee", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" } ], "nodes": [ @@ -3156,7 +3157,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/Integritee.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", "overridesCommon": true }, "externalApi": { @@ -3166,7 +3167,7 @@ } }, "color": "linear-gradient(315deg, #000C5F 47.14%, #91E3DA 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Integritee.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", "addressPrefix": 13 }, { @@ -3179,7 +3180,7 @@ "symbol": "CFG", "precision": 18, "priceId": "centrifuge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" } ], "nodes": [ @@ -3205,7 +3206,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/centrifuge.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", "overridesCommon": true }, "externalApi": { @@ -3215,7 +3216,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg", "addressPrefix": 36 }, { @@ -3228,7 +3229,7 @@ "symbol": "EFI", "precision": 18, "priceId": "efinity", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" } ], "nodes": [ @@ -3246,7 +3247,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/efinity.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", "overridesCommon": true }, "externalApi": { @@ -3256,7 +3257,7 @@ } }, "color": "linear-gradient(315.17deg, #4E6FD4 0%, #7B99F5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Efinity.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg", "addressPrefix": 1110 }, { @@ -3268,7 +3269,7 @@ "assetId": 0, "symbol": "HDX", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" } ], "nodes": [ @@ -3278,7 +3279,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/hydra_dx.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", "overridesCommon": true }, "externalApi": { @@ -3288,7 +3289,7 @@ } }, "color": "linear-gradient(315.17deg, #081152 19.76%, #F569AD 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/HydraDX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg", "addressPrefix": 63 }, { @@ -3301,7 +3302,7 @@ "symbol": "INTR", "precision": 10, "priceId": "interlay", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0002", @@ -3315,7 +3316,7 @@ "symbol": "iBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/interBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0001", @@ -3329,7 +3330,7 @@ "symbol": "DOT", "precision": 10, "priceId": "polkadot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadot.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x0000", @@ -3343,7 +3344,7 @@ "symbol": "KINT", "precision": 12, "priceId": "kintsugi", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000c", @@ -3357,7 +3358,7 @@ "symbol": "kBTC", "precision": 8, "priceId": "bitcoin", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/KBTC.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000b", @@ -3371,7 +3372,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x000a", @@ -3400,7 +3401,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/interlay.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", "overridesCommon": true }, "externalApi": { @@ -3410,7 +3411,7 @@ } }, "color": "linear-gradient(315.17deg, #000000 0%, #3F3F3F 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", "addressPrefix": 2032 }, { @@ -3422,7 +3423,7 @@ "assetId": 0, "symbol": "NODL", "precision": 11, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" } ], "nodes": [ @@ -3448,7 +3449,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/nodle.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", "overridesCommon": true }, "externalApi": { @@ -3458,7 +3459,7 @@ } }, "color": "linear-gradient(315.17deg, #50AA85 0%, #57C799 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg", "addressPrefix": 37 }, { @@ -3469,7 +3470,7 @@ "assetId": 0, "symbol": "KSM", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" } ], "nodes": [ @@ -3479,11 +3480,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/singular_testnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Testnet.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Testnet.svg", "addressPrefix": 0 }, { @@ -3496,7 +3497,7 @@ "symbol": "PHA", "precision": 12, "priceId": "pha", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" } ], "nodes": [ @@ -3514,7 +3515,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/phala.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", "overridesCommon": true }, "externalApi": { @@ -3524,7 +3525,7 @@ } }, "color": "linear-gradient(315deg, #78930F 0%, #D1F068 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", "addressPrefix": 30 }, { @@ -3537,7 +3538,7 @@ "symbol": "TUR", "staking": "turing", "precision": 10, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" }, { "assetId": 1, @@ -3545,7 +3546,7 @@ "precision": 12, "priceId": "kusama", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "typeExtras": { "currencyIdScale": "0x01", "currencyIdType": "turing_runtime.CurrencyId", @@ -3559,7 +3560,7 @@ "precision": 12, "priceId": "tether", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/AUSD.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", "typeExtras": { "currencyIdScale": "0x02", "currencyIdType": "turing_runtime.CurrencyId", @@ -3573,7 +3574,7 @@ "precision": 12, "priceId": "karura", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "typeExtras": { "currencyIdScale": "0x03", "currencyIdType": "turing_runtime.CurrencyId", @@ -3586,7 +3587,7 @@ "symbol": "LKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/LKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", "typeExtras": { "currencyIdScale": "0x04", "currencyIdType": "turing_runtime.CurrencyId", @@ -3599,7 +3600,7 @@ "symbol": "HKO", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/HKO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", "typeExtras": { "currencyIdScale": "0x05", "currencyIdType": "turing_runtime.CurrencyId", @@ -3612,7 +3613,7 @@ "symbol": "sKSM", "precision": 12, "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/sKSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", "typeExtras": { "currencyIdScale": "0x06", "currencyIdType": "turing_runtime.CurrencyId", @@ -3626,7 +3627,7 @@ "precision": 12, "priceId": "pha", "type": "orml", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", "typeExtras": { "currencyIdScale": "0x07", "currencyIdType": "turing_runtime.CurrencyId", @@ -3646,7 +3647,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/turing.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", "overridesCommon": true }, "explorers": [ @@ -3660,15 +3661,15 @@ "externalApi": { "history": { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing__bm92Y" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" }, "staking": { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing__bm92Y" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" } }, "color": "linear-gradient(315deg, #B533B3 14.94%, #38EDF1 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Turing.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", "addressPrefix": 51 }, { @@ -3681,7 +3682,7 @@ "staking": "aleph-zero", "priceId": "aleph-zero", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" } ], "nodes": [ @@ -3699,7 +3700,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/aleph_zero.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", "overridesCommon": true }, "externalApi": { @@ -3713,7 +3714,7 @@ } }, "color": "linear-gradient(315deg, #008464 20%, #69E6C8 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", "addressPrefix": 42 }, { @@ -3725,7 +3726,7 @@ "assetId": 0, "symbol": "LAYR", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" } ], "nodes": [ @@ -3747,7 +3748,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/composable.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", "overridesCommon": true }, "externalApi": { @@ -3757,7 +3758,7 @@ } }, "color": "linear-gradient(315.17deg, #7A0354 13.48%, #8E0076 46.85%, #F139FE 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Composable.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg", "addressPrefix": 49 }, { @@ -3770,7 +3771,7 @@ "priceId": "polkadex", "staking": "relaychain", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" } ], "nodes": [ @@ -3796,21 +3797,21 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polkadex.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", "overridesCommon": true }, "externalApi": { "staking": { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex__bm92Y" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" }, "history": { "type": "subquery", - "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex__bm92Y" + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" } }, "color": "linear-gradient(315deg, #2B2D36 23.96%, #606169 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polkadex.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg", "addressPrefix": 88 }, { @@ -3831,7 +3832,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/origintrail.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", "overridesCommon": true }, "externalApi": { @@ -3841,7 +3842,7 @@ } }, "color": "linear-gradient(315deg, #B62EB1 0%, #E96CE5 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/OriginTrail.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg", "addressPrefix": 101 }, { @@ -3863,7 +3864,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", "overridesCommon": true }, "externalApi": { @@ -3873,7 +3874,7 @@ } }, "color": "linear-gradient(135deg, #D43079 26.21%, #2EA9E7 26.42%, #4584F5 40.32%, #AC57C0 60.21%, #E65659 80.19%, #FFBF12 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "addressPrefix": 6 }, { @@ -3895,7 +3896,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/litentry.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", "overridesCommon": true }, "externalApi": { @@ -3905,7 +3906,7 @@ } }, "color": "linear-gradient(315deg, #0E7227 0%, #5CC774 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Litentry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", "addressPrefix": 31 }, { @@ -3942,7 +3943,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/unique.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", "overridesCommon": true }, "externalApi": { @@ -3952,7 +3953,7 @@ } }, "color": "linear-gradient(315deg, #267DEE 0%, #5FC2F9 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Unique.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg", "addressPrefix": 7391 }, { @@ -3974,7 +3975,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/dorafactory.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", "overridesCommon": true }, "externalApi": { @@ -3984,7 +3985,7 @@ } }, "color": "linear-gradient(315deg, #E04E02 0%, #FCB350 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/DoraFactory.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", "addressPrefix": 128 }, { @@ -3996,7 +3997,7 @@ "assetId": 0, "symbol": "MGX", "precision": 18, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/MangataX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x00000000", @@ -4010,7 +4011,7 @@ "symbol": "KSM", "precision": 12, "priceId": "kusama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x04000000", @@ -4024,7 +4025,7 @@ "symbol": "ETH", "precision": 18, "priceId": "ethereum", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/tokens/white/ETH.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", "type": "orml", "typeExtras": { "currencyIdScale": "0x01000000", @@ -4053,11 +4054,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/mangatax.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #009F80 24.99%, #95E7D7 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/MangataX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", "addressPrefix": 42 }, { @@ -4070,7 +4071,7 @@ "staking": "aleph-zero", "priceId": "aleph-zero", "precision": 12, - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" } ], "nodes": [ @@ -4080,11 +4081,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Aleph_zero.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg", "addressPrefix": 42, "options": [ "testnet" @@ -4107,11 +4108,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/moonbase_relay.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "addressPrefix": 42, "options": [ "testnet" @@ -4144,11 +4145,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/polymesh.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Polymesh.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", "addressPrefix": 42, "options": [ "testnet" @@ -4172,7 +4173,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/pichiu.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", "overridesCommon": true }, "externalApi": { @@ -4182,7 +4183,7 @@ } }, "color": "linear-gradient(315deg, #A91056 0%, #F34594 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Pichiu.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg", "addressPrefix": 42 }, { @@ -4203,7 +4204,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/kabocha.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", "overridesCommon": true }, "externalApi": { @@ -4213,7 +4214,7 @@ } }, "color": "linear-gradient(315deg, #C9B904 0%, #D3CD4A 66.15%, #FDF775 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Kabocha.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg", "addressPrefix": 27 }, { @@ -4235,7 +4236,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/tanganika.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", "overridesCommon": true }, "externalApi": { @@ -4245,7 +4246,7 @@ } }, "color": "linear-gradient(315deg, #7D20BF 15.1%, #584DDB 57.81%, #51BEF9 94.27%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/DataHighway.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", "addressPrefix": 33 }, { @@ -4266,7 +4267,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/bajun.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", "overridesCommon": true }, "externalApi": { @@ -4276,7 +4277,7 @@ } }, "color": "linear-gradient(315deg, #DF5262 16.15%, #EC725D 53.13%, #F38861 75.32%, #3F3F3F 75.41%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bajun.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg", "addressPrefix": 1337 }, { @@ -4297,7 +4298,7 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/imbue.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", "overridesCommon": true }, "externalApi": { @@ -4307,7 +4308,7 @@ } }, "color": "linear-gradient(315.17deg, #7CB00B 12.5%, #B5FF14 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Imbue.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg", "addressPrefix": 42 }, { @@ -4328,11 +4329,11 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/arctic_relay_testnet.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/arctic_relay_testnet.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Rococo.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", "addressPrefix": 42, "options": [ "testnet", @@ -4356,15 +4357,40 @@ } ], "types": { - "url": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/chains/v2/types/rococo.json", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", "overridesCommon": true }, "color": "linear-gradient(315deg, #434852 0%, #787F92 100%)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Rococo.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", "addressPrefix": 42, "options": [ "testnet", "crowdloans" ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12 + } + ], + "nodes": [ + { + "url": "wss://tinker.invarch.network", + "name": "InvArch node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "color": "linear-gradient(315.17deg, #CA28CC 15.89%, #30BCD0 85.66%)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "addressPrefix": 117 } ] diff --git a/chains/v5/chains.json b/chains/v5/chains.json new file mode 100644 index 000000000..3bef48e5d --- /dev/null +++ b/chains/v5/chains.json @@ -0,0 +1,4765 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://public-rpc.pinknode.io/polkadot", + "name": "Pinknode node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.io/ws", + "name": "Radium block node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.xyz/ws", + "name": "Radium block node" + }, + { + "url": "wss://public-rpc.pinknode.io/kusama", + "name": "Pinknode node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://kusama.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.pinknode.io/westend/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Patract node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://public-rpc.pinknode.io/moonbeam", + "name": "Pinknode node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "governance": { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://rpc.pinknode.io/moonriver/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "governance": { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.pinknode.io/shiden/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041 + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://altair-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + }, + { + "url": "wss://parallel-heiko.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "5" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38 + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + }, + { + "url": "wss://clover.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32 + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + }, + { + "url": "wss://kintsugi-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73 + }, + { + "chainId": "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "KICO", + "assets": [ + { + "assetId": 0, + "symbol": "KICO", + "precision": 14, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.kico.dico.io", + "name": "DICO FOUNDATION node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kico" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KICO.svg", + "addressPrefix": 42 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "eac895d7768b17837a9c3a9f0280c01502c3ef40193df923490a0fa9c60ea076", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + } + ], + "nodes": [ + { + "url": "wss://crab-parachain-rpc.darwinia.network/", + "name": "Crab node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crab" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-sha-subscan.crust.network", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-ksm-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://centrifuge-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36 + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63 + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30 + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 49 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex Solochain", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + }, + { + "url": "wss://pichiu.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinker.invarch.network", + "name": "InvArch node" + }, + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://ws-node-gm.terrabiodao.org", + "name": "TerraBioDao node" + }, + { + "url": "wss://kusama.gmordie.com", + "name": "GMorDieDAO node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + } +] diff --git a/chains/v5/chains_dev.json b/chains/v5/chains_dev.json new file mode 100644 index 000000000..b7d3122e1 --- /dev/null +++ b/chains/v5/chains_dev.json @@ -0,0 +1,5602 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://public-rpc.pinknode.io/polkadot", + "name": "Pinknode node" + }, + { + "url": "wss://polkadot.public.curie.radiumblock.io/ws", + "name": "Radium block node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.xyz/ws", + "name": "Radium block node" + }, + { + "url": "wss://public-rpc.pinknode.io/kusama", + "name": "Pinknode node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://kusama.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.pinknode.io/westend/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://rpc.pinknode.io/moonriver/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "governance": { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": "parachain", + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.pinknode.io/alphanet/explorer", + "name": "Pinknode" + }, + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.pinknode.io/shiden/explorer", + "name": "Pinknode node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + }, + { + "url": "wss://kintsugi-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": "aura-relaychain" + } + ], + "nodes": [ + { + "url": "wss://edgeware.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + }, + { + "url": "wss://parallel-heiko.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://heiko-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://altair-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + }, + "governance": { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://public-rpc.pinknode.io/moonbeam", + "name": "Pinknode node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "governance": { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + }, + { + "url": "wss://parallel.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + }, + { + "url": "wss://clover.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://picasso-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "KICO", + "assets": [ + { + "assetId": 0, + "symbol": "KICO", + "precision": 14, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.kico.dico.io", + "name": "DICO FOUNDATION node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kico" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KICO.svg", + "addressPrefix": 42 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "eac895d7768b17837a9c3a9f0280c01502c3ef40193df923490a0fa9c60ea076", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + } + ], + "nodes": [ + { + "url": "wss://crab-parachain-rpc.darwinia.network/", + "name": "Crab node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crab" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-sha-subscan.crust.network", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + }, + { + "url": "wss://integritee-ksm-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://centrifuge-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + }, + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex Solochain", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadex.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + }, + { + "url": "wss://pichiu.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "a834e4bd816a126565e6a06a7582ceb88b4419e1f926e573ca0f323cf778cd5f", + "name": "Arctic Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://arctic-relaychain.web3labs.com:9949/", + "name": "Arctic node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/arctic_relay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://tinker.invarch.network", + "name": "InvArch node" + }, + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://ws-node-gm.terrabiodao.org", + "name": "TerraBioDao node" + }, + { + "url": "wss://kusama.gmordie.com", + "name": "GMorDieDAO node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + }, + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "externalApi": { + "history": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "f179a15464514e00fe355a66b2bdafa490c4e232eed60f036bc46302b5d898eb", + "name": "Governance2 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "de06348a2bb1ca0b6ad293af89b08cc9e916d7753065c784d77c8d27a31af299", + "name": "Governance1 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://novasama.co/gov1", + "name": "Development node" + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet", + "governance-v1" + ] + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + } +] diff --git a/chains/v6/chains.json b/chains/v6/chains.json new file mode 100644 index 000000000..1ea857ee8 --- /dev/null +++ b/chains/v6/chains.json @@ -0,0 +1,5508 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://public-rpc.pinknode.io/polkadot", + "name": "Pinknode node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://public-rpc.pinknode.io/kusama", + "name": "Pinknode node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://kusama.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.pinknode.io/westend/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Patract node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://public-rpc.pinknode.io/moonbeam", + "name": "Pinknode node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "governance": { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://rpc.pinknode.io/moonriver/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "governance": { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.pinknode.io/shiden/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041 + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + }, + { + "url": "wss://parallel-heiko.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "5" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38 + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32 + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73 + }, + { + "chainId": "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "KICO", + "assets": [ + { + "assetId": 0, + "symbol": "KICO", + "precision": 14, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.kico.dico.io", + "name": "DICO FOUNDATION node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kico" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KICO.svg", + "addressPrefix": 42 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "eac895d7768b17837a9c3a9f0280c01502c3ef40193df923490a0fa9c60ea076", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + } + ], + "nodes": [ + { + "url": "wss://crab-parachain-rpc.darwinia.network/", + "name": "Crab node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crab" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36 + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63 + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30 + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 49 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex Solochain", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + }, + { + "url": "wss://pichiu.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://ws-node-gm.terrabiodao.org", + "name": "TerraBioDao node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + } +] diff --git a/chains/v6/chains_dev.json b/chains/v6/chains_dev.json new file mode 100644 index 000000000..7c6cc2394 --- /dev/null +++ b/chains/v6/chains_dev.json @@ -0,0 +1,6360 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://public-rpc.pinknode.io/polkadot", + "name": "Pinknode node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://public-rpc.pinknode.io/kusama", + "name": "Pinknode node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://kusama.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.pinknode.io/westend/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://rpc.pinknode.io/moonriver/explorer", + "name": "Pinknode node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "governance": { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": "parachain", + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://public-rpc.pinknode.io/alphanet", + "name": "Pinknode" + }, + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.pinknode.io/shiden/explorer", + "name": "Pinknode node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": "aura-relaychain" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + }, + { + "url": "wss://parallel-heiko.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://heiko-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://public-rpc.pinknode.io/moonbeam", + "name": "Pinknode node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "governance": { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://picasso-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "KICO", + "assets": [ + { + "assetId": 0, + "symbol": "KICO", + "precision": 14, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.kico.dico.io", + "name": "DICO FOUNDATION node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kico" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KICO.svg", + "addressPrefix": 42 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "eac895d7768b17837a9c3a9f0280c01502c3ef40193df923490a0fa9c60ea076", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crab", + "assets": [ + { + "assetId": 0, + "symbol": "CRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg" + } + ], + "nodes": [ + { + "url": "wss://crab-parachain-rpc.darwinia.network/", + "name": "Crab node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crab.subscan.io/extrinsic/{hash}", + "account": "https://crab.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crab.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-crab" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg", + "addressPrefix": 42 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + }, + { + "url": "wss://pichiu.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42, + "options": [ + "governance-v1" + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "a834e4bd816a126565e6a06a7582ceb88b4419e1f926e573ca0f323cf778cd5f", + "name": "Arctic Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://arctic-relaychain.web3labs.com:9949/", + "name": "Arctic node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/arctic_relay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "f179a15464514e00fe355a66b2bdafa490c4e232eed60f036bc46302b5d898eb", + "name": "Governance2 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "de06348a2bb1ca0b6ad293af89b08cc9e916d7753065c784d77c8d27a31af299", + "name": "Governance1 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://novasama.co/gov1", + "name": "Development node" + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet", + "governance-v1" + ] + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xxnetwork-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + } +] diff --git a/chains/v7/chains.json b/chains/v7/chains.json new file mode 100644 index 000000000..465df6cc4 --- /dev/null +++ b/chains/v7/chains.json @@ -0,0 +1,5691 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://kusama.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "governance": { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "governance": { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "basilisk" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73 + }, + { + "chainId": "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "KICO", + "assets": [ + { + "assetId": 0, + "symbol": "KICO", + "precision": 14, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.kico.dico.io", + "name": "DICO FOUNDATION node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kico" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KICO.svg", + "addressPrefix": 42 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "hydradx" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30 + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 49 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + } +] diff --git a/chains/v7/chains_dev.json b/chains/v7/chains_dev.json new file mode 100644 index 000000000..16e0c9573 --- /dev/null +++ b/chains/v7/chains_dev.json @@ -0,0 +1,6576 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://kusama.polkassembly.io/v1/graphql" + } + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "karura" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + "governance": { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": "parachain", + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": "aura-relaychain" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "basilisk" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "altair" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "acala" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "assetType": "evm", + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + "governance": { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "KICO", + "assets": [ + { + "assetId": 0, + "symbol": "KICO", + "precision": 14, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.kico.dico.io", + "name": "DICO FOUNDATION node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kico.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kico" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KICO.svg", + "addressPrefix": 42 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "hydradx" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + }, + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "turing" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42, + "options": [ + "governance-v1" + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "tanganika" + } + } + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "a834e4bd816a126565e6a06a7582ceb88b4419e1f926e573ca0f323cf778cd5f", + "name": "Arctic Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://arctic-relaychain.web3labs.com:9949/", + "name": "Arctic node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/arctic_relay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + }, + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "b587be787d4b0209a3105469f0cbfa34eeb834e49d949e841898b2243825d765", + "name": "Governance2 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "de06348a2bb1ca0b6ad293af89b08cc9e916d7753065c784d77c8d27a31af299", + "name": "Governance1 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://novasama.co/gov1", + "name": "Development node" + } + ], + "externalApi": { + "staking": { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet", + "governance-v1" + ] + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crust.svg", + "addressPrefix": 88 + } +] diff --git a/chains/v8/chains.json b/chains/v8/chains.json new file mode 100644 index 000000000..3ca549fd3 --- /dev/null +++ b/chains/v8/chains.json @@ -0,0 +1,5781 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kusama.polkassembly.io/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "basilisk" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "hydradx" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30 + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c1.hashed.network", + "name": "Hashed systems 1 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + } +] diff --git a/chains/v8/chains_dev.json b/chains/v8/chains_dev.json new file mode 100644 index 000000000..00f184456 --- /dev/null +++ b/chains/v8/chains_dev.json @@ -0,0 +1,6850 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkadot.polkassembly.io/v1/graphql" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "karura" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": "parachain", + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "kBTC-KSM", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-KSM.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": "aura-relaychain" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "basilisk" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "altair" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://ws.calamari.systems/", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "acala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "hydradx" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "turing" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42, + "options": [ + "governance-v1" + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "tanganika" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "a834e4bd816a126565e6a06a7582ceb88b4419e1f926e573ca0f323cf778cd5f", + "name": "Arctic Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://arctic-relaychain.web3labs.com:9949/", + "name": "Arctic node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/arctic_relay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "b587be787d4b0209a3105469f0cbfa34eeb834e49d949e841898b2243825d765", + "name": "Governance2 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "de06348a2bb1ca0b6ad293af89b08cc9e916d7753065c784d77c8d27a31af299", + "name": "Governance1 Novasama Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://novasama.co/gov1", + "name": "Development node" + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet", + "governance-v1" + ] + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "kBTC-KSM", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-KSM.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c1.hashed.network", + "name": "Hashed systems 1 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + } +] diff --git a/chains/v9/chains.json b/chains/v9/chains.json new file mode 100644 index 000000000..a5ca8db1c --- /dev/null +++ b/chains/v9/chains.json @@ -0,0 +1,5946 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8 + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonbeam.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura node" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/9dddd77ac74043dc9a8dc48f82822c7d", + "name": "Infura node 2" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://api.moonriver.polkassembly.network/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "priceId": "bifrost-native-coin", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6 + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge node" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78 + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268 + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172 + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49 + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73 + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131 + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66 + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110 + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30 + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51 + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "priceId": "aleph-zero", + "staking": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 50 + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88 + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42 + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33 + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57 + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207 + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c1.hashed.network", + "name": "Hashed systems 1 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + } +] diff --git a/chains/v9/chains_dev.json b/chains/v9/chains_dev.json new file mode 100644 index 000000000..69316fe12 --- /dev/null +++ b/chains/v9/chains_dev.json @@ -0,0 +1,7133 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://polkadot.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://rpc.dotters.network/polkadot", + "name": "Dotters Net node" + }, + { + "url": "wss://rpc.ibp.network/polkadot", + "name": "IBP network node" + }, + { + "url": "wss://polkadot-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://1rpc.io/dot", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadot.subscan.io/extrinsic/{hash}", + "account": "https://polkadot.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/polkadot/extrinsic/{hash}", + "account": "https://polkascan.io/polkadot/account/{address}", + "event": "https://polkascan.io/polkadot/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadot.svg", + "addressPrefix": 0, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadot" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/polkadot-dev.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://polkadot.subsquare.io/api" + } + ] + }, + "options": [ + "crowdloans", + "governance-v1" + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "staking": "relaychain", + "buyProviders": { + "transak": { + "network": "MAINNET" + }, + "mercuryo": {} + } + } + ], + "nodes": [ + { + "url": "wss://rpc.ibp.network/kusama", + "name": "IBP network node" + }, + { + "url": "wss://1rpc.io/ksm", + "name": "Automata 1RPC node" + }, + { + "url": "wss://kusama-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://rpc.dotters.network/kusama", + "name": "Dotters Net node" + }, + { + "url": "wss://kusama.public.curie.radiumblock.co/ws", + "name": "Radium node" + }, + { + "url": "wss://kusama-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kusama.subscan.io/extrinsic/{hash}", + "account": "https://kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkascan", + "extrinsic": "https://polkascan.io/kusama/extrinsic/{hash}", + "account": "https://polkascan.io/kusama/account/{address}", + "event": "https://polkascan.io/kusama/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kusama.svg", + "addressPrefix": 2, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kusama.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/kusama.json" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://kusama.subsquare.io/api" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kusama-governance2" + } + ] + }, + "options": [ + "crowdloans", + "governance", + "governance-v1" + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westend", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://westend-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westend.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://westend-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://westend.subscan.io/extrinsic/{hash}", + "account": "https://westend.subscan.io/account/{address}", + "event": null + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westend.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-westend" + } + ], + "crowdloans": [ + { + "type": "github", + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/crowdloan/westend.json" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "westend" + } + } + ] + }, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "parentId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "name": "Westmint", + "assets": [ + { + "assetId": 0, + "symbol": "WND", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Westend.svg" + }, + { + "assetId": 1, + "symbol": "SIRI", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "type": "statemine", + "typeExtras": { + "assetId": "81" + } + } + ], + "nodes": [ + { + "url": "wss://westmint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://westmint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://westmint.statescan.io/account/{address}", + "extrinsic": "https://westmint.statescan.io/extrinsic/{hash}", + "event": "https://westmint.statescan.io/event/{event}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westmint_Testnet.svg", + "addressPrefix": 42, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/westmint.json", + "overridesCommon": true + }, + "options": [ + "testnet" + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Statemine", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama" + }, + { + "assetId": 1, + "symbol": "RMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 2, + "symbol": "CHAOS", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHAOS.svg", + "typeExtras": { + "assetId": "69420" + } + }, + { + "assetId": 3, + "symbol": "CHRWNA", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CHRWNA.svg", + "typeExtras": { + "assetId": "567" + } + }, + { + "assetId": 4, + "symbol": "SHIBATALES", + "precision": 0, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Default.svg", + "typeExtras": { + "assetId": "88888" + } + }, + { + "assetId": 5, + "symbol": "BILLCOIN", + "precision": 8, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BILLCOIN.svg", + "typeExtras": { + "assetId": "223" + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemine.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemine-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://statemine-rpc.polkadot.io", + "name": "Parity node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://statemine.subscan.io/extrinsic/{hash}", + "account": "https://statemine.subscan.io/account/{address}", + "event": null + }, + { + "name": "Statescan", + "extrinsic": "https://statemine.statescan.io/extrinsic/{hash}", + "account": "https://statemine.statescan.io/account/{address}", + "event": "https://statemine.statescan.io/event/{event}" + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemine.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemine" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemine.svg", + "addressPrefix": 2 + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Karura", + "assets": [ + { + "assetId": 0, + "symbol": "KAR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "priceId": "karura" + }, + { + "assetId": 1, + "symbol": "aUSD", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "priceId": "acala-dollar", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0081", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0082", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "BNC", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "typeExtras": { + "currencyIdScale": "0x00a8", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "8000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0083", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x00aa", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x00ab", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "133330000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x00ac", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "660000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "TAI", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAI.svg", + "typeExtras": { + "currencyIdScale": "0x0084", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x00a9", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "taiKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/taiKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "QTZ", + "precision": 18, + "priceId": "quartz", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 14, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 15, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 16, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "currencyIdScale": "0x050500", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 17, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 18, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "currencyIdScale": "0x050a00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 19, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "currencyIdScale": "0x050800", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 20, + "symbol": "KICO", + "precision": 14, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KICO.svg", + "typeExtras": { + "currencyIdScale": "0x050600", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 21, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bit.Country.svg", + "typeExtras": { + "currencyIdScale": "0x050900", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 22, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "currencyIdScale": "0x050b00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 23, + "symbol": "AIR", + "precision": 18, + "priceId": "altair", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "typeExtras": { + "currencyIdScale": "0x050c00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 24, + "symbol": "GENS", + "precision": 9, + "type": "orml", + "priceId": "genshiro", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "currencyIdScale": "0x050e00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 25, + "symbol": "EQD", + "precision": 9, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/EQD.svg", + "typeExtras": { + "currencyIdScale": "0x050f00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 26, + "symbol": "CRAB", + "precision": 18, + "type": "orml", + "priceId": "darwinia-crab-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "currencyIdScale": "0x050d00", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://karura-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://karura-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://karura-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://karura-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://karura-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/karura.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://karura.subscan.io/extrinsic/{hash}", + "account": "https://karura.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-karura" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "karura" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", + "addressPrefix": 8, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Moonriver", + "assets": [ + { + "assetId": 0, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MOONRIVER" + } + } + }, + { + "assetId": 1, + "symbol": "xcRMRK", + "precision": 10, + "priceId": "rmrk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "typeExtras": { + "assetId": "182365888117048807484804376330534607370" + } + }, + { + "assetId": 2, + "symbol": "xcKSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 3, + "symbol": "xcKINT", + "precision": 12, + "priceId": "kintsugi", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "175400718394635817552109270754364440562" + } + }, + { + "assetId": 4, + "symbol": "xcKAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "10810581592933651521121702237638664357" + } + }, + { + "assetId": 5, + "symbol": "xcBNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "319623561105283008236062145480775032445" + } + }, + { + "assetId": 6, + "symbol": "xckBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "328179947973504579459046439826496046832" + } + }, + { + "assetId": 7, + "symbol": "xcUSDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + }, + { + "assetId": 8, + "symbol": "xcaUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "214920334981412447805621250067209749032" + } + }, + { + "assetId": 9, + "symbol": "xcCSM", + "precision": 12, + "priceId": "crust-storage-market", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "108457044225666871745333730479173774551" + } + }, + { + "assetId": 10, + "symbol": "xcPHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "189307976387032586987344677431204943363" + } + }, + { + "assetId": 11, + "symbol": "xcHKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "76100021443485661246318545281171740067" + } + }, + { + "assetId": 12, + "symbol": "xcKMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "213357169630950964874127107356898319277" + } + }, + { + "assetId": 13, + "symbol": "xcCRAB", + "precision": 18, + "priceId": "darwinia-crab-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Crab.svg", + "typeExtras": { + "assetId": "173481220575862801646329923366065693029" + } + }, + { + "assetId": 14, + "symbol": "xcTEER", + "precision": 12, + "priceId": "integritee", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg", + "typeExtras": { + "assetId": "105075627293246237499203909093923548958" + } + }, + { + "assetId": 15, + "symbol": "xcLIT", + "precision": 12, + "priceId": "litentry", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "typeExtras": { + "assetId": "65216491554813189869575508812319036608" + } + }, + { + "assetId": 16, + "symbol": "xcSDN", + "precision": 18, + "priceId": "shiden", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "typeExtras": { + "assetId": "16797826370226091782818345603793389938" + } + }, + { + "assetId": 17, + "symbol": "xcXRT", + "precision": 9, + "priceId": "robonomics-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "assetId": "108036400430056508975016746969135344601" + } + } + ], + "nodes": [ + { + "url": "wss://moonriver.api.onfinality.io/ws?apikey=41935d3d-3d6c-4a90-a0e1-33c065401d05", + "name": "OnFinality node" + }, + { + "url": "wss://moonriver.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.api.moonriver.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonriver.public.blastapi.io", + "name": "Blast node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonriver.subscan.io/extrinsic/{hash}", + "account": "https://moonriver.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonriver.moonscan.io/tx/{hash}", + "account": "https://moonriver.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonriver.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + }, + { + "type": "etherscan", + "url": "https://api-moonriver.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonriver-hasura.herokuapp.com/v1/graphql" + } + ], + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonriver-gov" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "addressPrefix": 1285, + "options": [ + "ethereumBased", + "governance", + "governance-v1" + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "parentId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Alpha", + "assets": [ + { + "staking": "parachain", + "assetId": 0, + "symbol": "DEV", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 18 + }, + { + "assetId": 1, + "symbol": "xcUNIT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "precision": 12, + "type": "statemine", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + } + ], + "nodes": [ + { + "url": "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://wss.testnet.moonbeam.network", + "name": "Moonbeam Network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbase.subscan.io/extrinsic/{hash}", + "account": "https://moonbase.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 1287, + "options": [ + "ethereumBased", + "testnet" + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Shiden", + "assets": [ + { + "assetId": 0, + "symbol": "SDN", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", + "priceId": "shiden" + }, + { + "assetId": 1, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551623" + } + }, + { + "assetId": 2, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "MOVR", + "precision": 18, + "type": "statemine", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "KINT", + "precision": 12, + "type": "statemine", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 7, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 8, + "symbol": "CSM", + "precision": 12, + "type": "statemine", + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg", + "typeExtras": { + "assetId": "18446744073709551624" + } + }, + { + "assetId": 9, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 10, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.shiden.astar.network", + "name": "StakeTechnologies node" + }, + { + "url": "wss://shiden.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://shiden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shiden.subscan.io/extrinsic/{hash}", + "account": "https://shiden.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", + "addressPrefix": 5, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/shiden.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shiden" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "shiden" + } + } + ] + } + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bifrost Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "priceId": "bifrost-native-coin", + "staking": "parachain" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0204", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "RMRK", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RMRK.svg", + "priceId": "rmrk", + "typeExtras": { + "currencyIdScale": "0x0209", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "currencyIdScale": "0x0207", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x0206", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0302", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "vsKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vsKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0404", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "MOVR", + "precision": 18, + "type": "orml", + "priceId": "moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "currencyIdScale": "0x020a", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "PHA", + "precision": 12, + "type": "orml", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x0208", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "40000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "vKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/vKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0104", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + }, + { + "url": "wss://bifrost-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bifrost-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost-kusama.subscan.io/extrinsic/{hash}", + "account": "https://bifrost-kusama.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "addressPrefix": 6, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-kusama.interlay.io/parachain", + "name": "Kintsugi Labs" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kintsugi.subscan.io/extrinsic/{hash}", + "account": "https://kintsugi.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kintsugi" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "addressPrefix": 2092 + }, + { + "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", + "name": "Edgeware", + "assets": [ + { + "assetId": 0, + "symbol": "EDG", + "precision": 18, + "priceId": "edgeware", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg", + "staking": "aura-relaychain" + } + ], + "nodes": [ + { + "url": "wss://edgeware-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://edgeware.jelliedowl.net", + "name": "JelliedOwl node" + }, + { + "url": "wss://mainnet2.edgewa.re", + "name": "Edgeware node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/edgeware.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://edgeware.subscan.io/extrinsic/{hash}", + "account": "https://edgeware.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-edgeware__bm92Y" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Edgeware.svg", + "addressPrefix": 7 + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Parallel Heiko", + "assets": [ + { + "assetId": 0, + "symbol": "HKO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "100" + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "103" + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "assetId": "109" + } + }, + { + "assetId": 4, + "symbol": "sKSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "assetId": "1000" + } + }, + { + "assetId": 5, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "107" + } + }, + { + "assetId": 6, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "113" + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + }, + { + "assetId": 8, + "symbol": "GENS", + "precision": 9, + "priceId": "genshiro", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg", + "typeExtras": { + "assetId": "123" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + } + ], + "nodes": [ + { + "url": "wss://heiko-rpc.parallel.fi", + "name": "Parallel" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel_heiko.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel-heiko.subscan.io/extrinsic/{hash}", + "account": "https://parallel-heiko.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel-heiko" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "addressPrefix": 110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Basilisk", + "assets": [ + { + "assetId": 0, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "TNKR", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0e000000", + "currencyIdType": "u32", + "existentialDeposit": "10000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "XRT", + "precision": 9, + "type": "orml", + "priceId": "robonomics-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "typeExtras": { + "currencyIdScale": "0x10000000", + "currencyIdType": "u32", + "existentialDeposit": "1683502", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.basilisk.cloud", + "name": "Basilisk node" + }, + { + "url": "wss://basilisk-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://basilisk.subscan.io/extrinsic/{hash}", + "account": "https://basilisk.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/basilisk.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-basilisk" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://basilisk.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "addressPrefix": 10041, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Altair", + "assets": [ + { + "assetId": 0, + "symbol": "AIR", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Altair.svg", + "priceId": "altair" + } + ], + "nodes": [ + { + "url": "wss://fullnode.altair.centrifuge.io", + "name": "Centrifuge" + }, + { + "url": "wss://altair.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/altair.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://altair.subscan.io/extrinsic/{hash}", + "account": "https://altair.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-altair" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "altair" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", + "addressPrefix": 136, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Khala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "assetId": "0" + } + }, + { + "assetId": 2, + "symbol": "KAR", + "precision": 12, + "type": "statemine", + "priceId": "karura", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "assetId": "1" + } + }, + { + "assetId": 3, + "symbol": "BNC", + "precision": 12, + "type": "statemine", + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", + "typeExtras": { + "assetId": "2" + } + }, + { + "assetId": 4, + "symbol": "ZLK", + "precision": 18, + "priceId": "zenlink-network-token", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ZLK.svg", + "typeExtras": { + "assetId": "3" + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "4" + } + }, + { + "assetId": 6, + "symbol": "BSX", + "precision": 12, + "priceId": "basilisk", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Basilisk.svg", + "typeExtras": { + "assetId": "9" + } + }, + { + "assetId": 7, + "symbol": "MOVR", + "precision": 18, + "priceId": "moonriver", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", + "typeExtras": { + "assetId": "6" + } + }, + { + "assetId": 8, + "symbol": "HKO", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "assetId": "7" + } + }, + { + "assetId": 9, + "symbol": "KMA", + "precision": 12, + "priceId": "calamari-network", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "typeExtras": { + "assetId": "8" + } + }, + { + "assetId": 10, + "symbol": "TUR", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg", + "typeExtras": { + "assetId": "10" + } + } + ], + "nodes": [ + { + "url": "wss://khala-api.phala.network/ws", + "name": "Phala node" + }, + { + "url": "wss://khala.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://khala-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://khala.subscan.io/extrinsic/{hash}", + "account": "https://khala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/khala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-khala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "khala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", + "addressPrefix": 30 + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "KILT", + "assets": [ + { + "assetId": 0, + "symbol": "KILT", + "priceId": "kilt-protocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg", + "precision": 15 + } + ], + "nodes": [ + { + "url": "wss://spiritnet.kilt.io/", + "name": "KILT Protocol node" + }, + { + "url": "wss://spiritnet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://spiritnet.subscan.io/extrinsic/{hash}", + "account": "https://spiritnet.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_spiritnet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kilt" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://kilt-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "addressPrefix": 38, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", + "name": "KILT Peregrine", + "assets": [ + { + "assetId": 0, + "symbol": "PILT", + "precision": 15, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT.svg" + } + ], + "nodes": [ + { + "url": "wss://peregrine.kilt.io/parachain-public-ws/", + "name": "KILT Protocol Node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://kilt-testnet.subscan.io/extrinsic/{hash}", + "account": "https://kilt-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kilt_peregrine.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Peregrine_Testnet.svg", + "addressPrefix": 38, + "options": [ + "testnet" + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Calamari", + "assets": [ + { + "assetId": 0, + "symbol": "KMA", + "priceId": "calamari-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Calamari.svg", + "precision": 12, + "staking": "parachain" + } + ], + "nodes": [ + { + "url": "wss://calamari.systems", + "name": "Manta network node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://calamari.subscan.io/extrinsic/{hash}", + "account": "https://calamari.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/calamari.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-calamari" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "calamari" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", + "addressPrefix": 78, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "QUARTZ", + "assets": [ + { + "assetId": 0, + "symbol": "QTZ", + "priceId": "quartz", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Quartz.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://quartz.unique.network", + "name": "Unique node" + }, + { + "url": "wss://eu-ws-quartz.unique.network", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws-quartz.unique.network", + "name": "Unique US node" + }, + { + "url": "wss://asia-ws-quartz.unique.network", + "name": "Unique Asia node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/quartz.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://quartz.subscan.io/extrinsic/{hash}", + "account": "https://quartz.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-quartz" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", + "addressPrefix": 255 + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bit.Country Pioneer", + "assets": [ + { + "assetId": 0, + "symbol": "NEER", + "precision": 18, + "priceId": "metaverse-network-pioneer", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/NEER.svg" + }, + { + "assetId": 1, + "symbol": "BIT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/BIT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x030000000000000000", + "currencyIdType": "bit_country_primitives.FungibleTokenId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://pioneer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://pioneer.subscan.io/extrinsic/{hash}", + "account": "https://pioneer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bit.country_pioneer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bit-country" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "addressPrefix": 268, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Acala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "priceId": "acala", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0003", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "lcDOT", + "precision": 10, + "priceId": "liquid-crowdloan-dot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/lcDOT.svg", + "typeExtras": { + "currencyIdScale": "0x040d000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x050000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "currencyIdScale": "0x050100", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "TAP", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAP.svg", + "typeExtras": { + "currencyIdScale": "0x0004", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 8, + "symbol": "tDOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/tDOT.svg", + "typeExtras": { + "currencyIdScale": "0x0300000000", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 9, + "symbol": "INTR", + "precision": 10, + "type": "orml", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "currencyIdScale": "0x050400", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 10, + "symbol": "ASTR", + "precision": 18, + "type": "orml", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "currencyIdScale": "0x050200", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 11, + "symbol": "EQ", + "precision": 9, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Equilibrium.svg", + "typeExtras": { + "currencyIdScale": "0x050700", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000", + "transfersEnabled": true + } + }, + { + "assetId": 12, + "symbol": "iBTC", + "precision": 8, + "type": "orml", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "currencyIdScale": "0x050300", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "100", + "transfersEnabled": true + } + }, + { + "assetId": 13, + "symbol": "DAI", + "precision": 18, + "type": "orml", + "priceId": "dai", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x0254a37a01cd75b616d63e0ab665bffdb0143c52ae", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://acala-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://acala-rpc-0.aca-api.network", + "name": "Acala Foundation 0 node" + }, + { + "url": "wss://acala-rpc-1.aca-api.network", + "name": "Acala Foundation 1 node" + }, + { + "url": "wss://acala-rpc-2.aca-api.network/ws", + "name": "Acala Foundation 2 node" + }, + { + "url": "wss://acala-rpc-3.aca-api.network/ws", + "name": "Acala Foundation 3 node" + }, + { + "url": "wss://acala.polkawallet.io", + "name": "Polkawallet node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala.subscan.io/extrinsic/{hash}", + "account": "https://acala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-acala" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "acala" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "addressPrefix": 10, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "23fc729c2cdb7bd6770a4e8c58748387cc715fcf338f1f74a16833d90383f4b0", + "name": "Acala Mandala", + "assets": [ + { + "assetId": 0, + "symbol": "ACA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "acala_primitives.currency.CurrencyId", + "existentialDeposit": "1000000" + } + } + ], + "nodes": [ + { + "url": "wss://mandala-rpc.aca-staging.network/ws", + "name": "Acala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://acala-testnet.subscan.io/extrinsic/{hash}", + "account": "https://acala-testnet.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/acala_mandala.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala_Mandala_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Moonbeam", + "assets": [ + { + "assetId": 0, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "staking": "parachain", + "buyProviders": { + "transak": { + "network": "MAINNET" + } + } + }, + { + "assetId": 1, + "symbol": "xcDOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "42259045809535163221576417993425387648" + } + }, + { + "assetId": 2, + "symbol": "xcaUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "110021739665376159354538090254163045594" + } + }, + { + "assetId": 3, + "symbol": "xcACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "224821240862170613278369189818311486111" + } + }, + { + "assetId": 4, + "symbol": "xcPARA", + "precision": 12, + "priceId": "parallel-finance", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg", + "typeExtras": { + "assetId": "32615670524745285411807346420584982855" + } + }, + { + "assetId": 5, + "symbol": "xcINTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "101170542313601871197860408087030232491" + } + }, + { + "assetId": 6, + "symbol": "xciBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "120637696315203257380661607956669368914" + } + }, + { + "assetId": 7, + "symbol": "POOP", + "precision": 18, + "type": "statemine", + "priceId": "raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/POOP.svg", + "typeExtras": { + "assetId": "270195117769614861929703564202131636628", + "palletName": "LocalAssets" + } + }, + { + "assetId": 8, + "symbol": "xcASTR", + "precision": 18, + "type": "statemine", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "224077081838586484055667086558292981199" + } + }, + { + "assetId": 9, + "symbol": "xcPHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "132685552157663328694213725410064821485" + } + }, + { + "assetId": 10, + "symbol": "xcUSDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "311091173110107856861649819128533077277" + } + } + ], + "nodes": [ + { + "url": "wss://wss.api.moonbeam.network", + "name": "Moonbeam Foundation node" + }, + { + "url": "wss://moonbeam.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://moonbeam.public.blastapi.io", + "name": "Blast node" + }, + { + "url": "wss://1rpc.io/glmr", + "name": "Automata 1RPC node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://moonbeam.subscan.io/extrinsic/{hash}", + "account": "https://moonbeam.subscan.io/account/{address}", + "event": null + }, + { + "name": "Moonscan", + "extrinsic": "https://moonbeam.moonscan.io/tx/{hash}", + "account": "https://moonbeam.moonscan.io/address/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbeam.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + }, + { + "type": "etherscan", + "url": "https://api-moonbeam.moonscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-moonbeam" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://moonbeamp-hasura.herokuapp.com/v1/graphql" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "addressPrefix": 1284, + "options": [ + "ethereumBased", + "governance-v1" + ] + }, + { + "chainId": "eip155:1", + "name": "Ethereum", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodeSelectionStrategy": "uniform", + "nodes": [ + { + "url": "wss://mainnet.infura.io/ws/v3/1e69544301064ef19edb194a14fb75f3", + "name": "Infura node 3" + }, + { + "url": "wss://mainnet.infura.io/ws/v3/{INFURA_API_KEY}", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://etherscan.io/tx/{hash}", + "account": "https://etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum.svg", + "addressPrefix": 1, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:5", + "name": "Ethereum - Goerli", + "assets": [ + { + "assetId": 0, + "symbol": "ETH", + "priceId": "ethereum", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://goerli.infura.io/ws/v3/25bd0a6e359240529b237e5dd8b19e1f", + "name": "Infura test node" + } + ], + "explorers": [ + { + "name": "Etherscan", + "extrinsic": "https://goerli.etherscan.io/tx/{hash}", + "account": "https://goerli.etherscan.io/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api-goerli.etherscan.io/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ethereum_Goerli.svg", + "addressPrefix": 5, + "options": [ + "testnet", + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "89d3ec46d2fb43ef5a9713833373d5ea666b092fa8fd68fbc34596036571b907", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Equilibrium", + "assets": [ + { + "assetId": 0, + "symbol": "EQ", + "precision": 9, + "priceId": "equilibrium", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/EQ.svg", + "type": "equilibrium", + "typeExtras": { + "assetId": "25969" + } + } + ], + "nodes": [ + { + "url": "wss://node.pol.equilibrium.io", + "name": "Equilibrium node" + }, + { + "url": "wss://equilibrium-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-equilibrium__bm92Y" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/equilibrium_types.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "addressPrefix": 68 + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Astar", + "assets": [ + { + "assetId": 0, + "symbol": "ASTR", + "priceId": "astar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "precision": 18, + "buyProviders": { + "transak": { + "network": "ASTAR" + } + } + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "statemine", + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "340282366920938463463374607431768211455" + } + }, + { + "assetId": 2, + "symbol": "GLMR", + "precision": 18, + "type": "statemine", + "priceId": "moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "18446744073709551619" + } + }, + { + "assetId": 3, + "symbol": "iBTC", + "precision": 8, + "type": "statemine", + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "18446744073709551620" + } + }, + { + "assetId": 4, + "symbol": "INTR", + "precision": 10, + "type": "statemine", + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "18446744073709551621" + } + }, + { + "assetId": 5, + "symbol": "PHA", + "precision": 12, + "type": "statemine", + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "18446744073709551622" + } + }, + { + "assetId": 6, + "symbol": "ACA", + "precision": 12, + "type": "statemine", + "priceId": "acala", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "18446744073709551616" + } + }, + { + "assetId": 7, + "symbol": "LDOT", + "precision": 10, + "type": "statemine", + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "18446744073709551618" + } + }, + { + "assetId": 8, + "symbol": "aUSD", + "precision": 12, + "type": "statemine", + "priceId": "acala-dollar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "18446744073709551617" + } + }, + { + "assetId": 9, + "symbol": "USDT", + "precision": 6, + "type": "statemine", + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "4294969280" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.astar.network", + "name": "Astar node" + }, + { + "url": "wss://astar.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://astar-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://astar.subscan.io/extrinsic/{hash}", + "account": "https://astar.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/astar.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-astar" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "astar" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", + "addressPrefix": 5, + "additional": { + "defaultTip": "1000000" + } + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Parallel", + "assets": [ + { + "assetId": 0, + "symbol": "PARA", + "precision": 12, + "priceId": "parallel-finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PARA.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "assetId": "101" + } + }, + { + "assetId": 2, + "symbol": "sDOT", + "precision": 10, + "priceId": "polkadot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sDOT.svg", + "typeExtras": { + "assetId": "1001" + } + }, + { + "assetId": 3, + "symbol": "ACA", + "precision": 12, + "priceId": "acala", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Acala.svg", + "typeExtras": { + "assetId": "108" + } + }, + { + "assetId": 4, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "assetId": "104" + } + }, + { + "assetId": 5, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "typeExtras": { + "assetId": "110" + } + }, + { + "assetId": 6, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "assetId": "114" + } + }, + { + "assetId": 7, + "symbol": "cDOT-6/13", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200060013" + } + }, + { + "assetId": 8, + "symbol": "cDOT-7/14", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200070014" + } + }, + { + "assetId": 9, + "symbol": "cDOT-8/15", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200080015" + } + }, + { + "assetId": 10, + "symbol": "cDOT-9/16", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200090016" + } + }, + { + "assetId": 11, + "symbol": "cDOT-10/17", + "precision": 10, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/cDOT.svg", + "typeExtras": { + "assetId": "200100017" + } + }, + { + "assetId": 12, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "typeExtras": { + "assetId": "120" + } + }, + { + "assetId": 13, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "typeExtras": { + "assetId": "122" + } + }, + { + "assetId": 14, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "102" + } + }, + { + "assetId": 15, + "symbol": "CLV", + "precision": 18, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "typeExtras": { + "assetId": "130" + } + }, + { + "assetId": 16, + "symbol": "ASTR", + "precision": 18, + "priceId": "astar", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Astar.svg", + "typeExtras": { + "assetId": "112" + } + }, + { + "assetId": 17, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg", + "typeExtras": { + "assetId": "115" + } + } + ], + "nodes": [ + { + "url": "wss://rpc.parallel.fi", + "name": "Parallel node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://parallel.subscan.io/extrinsic/{hash}", + "account": "https://parallel.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/parallel.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-parallel" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "parallel" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", + "addressPrefix": 172, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "CLV Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CLV", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Clover.svg", + "priceId": "clover-finance" + } + ], + "nodes": [ + { + "url": "wss://rpc-para.clover.finance", + "name": "Clover node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://clv.subscan.io/extrinsic/{hash}", + "account": "https://clv.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/clover.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-clover" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "addressPrefix": 128 + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Statemint", + "assets": [ + { + "assetId": 0, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg" + }, + { + "assetId": 1, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "assetId": "1984" + } + } + ], + "nodes": [ + { + "url": "wss://statemint-rpc.polkadot.io", + "name": "Parity node" + }, + { + "url": "wss://statemint.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://statemint-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Statescan", + "account": "https://statemint.statescan.io/account/{address}", + "extrinsic": "https://statemint.statescan.io/extrinsic/{hash}", + "event": "https://statemint.statescan.io/event/{event}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/statemint.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-statemint" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Statemint.svg", + "addressPrefix": 0 + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Robonomics", + "assets": [ + { + "assetId": 0, + "symbol": "XRT", + "precision": 9, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", + "priceId": "robonomics-network" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "type": "statemine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "priceId": "kusama", + "typeExtras": { + "assetId": "4294967295" + } + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.robonomics.network/", + "name": "Airalab node" + }, + { + "url": "wss://robonomics.leemo.me", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://robonomics.subscan.io/extrinsic/{hash}", + "account": "https://robonomics.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/robonomics.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-robonomics" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "robonomics" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "addressPrefix": 32, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Encointer", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://api.kusama.encointer.org", + "name": "Encointer association node" + }, + { + "url": "wss://encointer.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://encointer.subscan.io/extrinsic/{hash}", + "account": "https://encointer.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/encointer.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-encointer" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Encointer.svg", + "addressPrefix": 2 + }, + { + "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Picasso", + "assets": [ + { + "assetId": 0, + "symbol": "PICA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Picasso.svg" + } + ], + "nodes": [ + { + "url": "wss://picasso-rpc.composable.finance", + "name": "Composable node" + }, + { + "url": "wss://rpc.composablenodes.tech", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://picasso.subscan.io/extrinsic/{hash}", + "account": "https://picasso.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/picasso.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-picasso" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", + "addressPrefix": 49, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Zeitgeist", + "assets": [ + { + "assetId": 0, + "symbol": "ZTG", + "staking": "parachain", + "precision": 10, + "priceId": "zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Zeitgeist.svg" + } + ], + "nodes": [ + { + "url": "wss://zeitgeist-rpc.dwellir.com", + "name": "Dwellir node" + }, + { + "url": "wss://zeitgeist.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/zeitgeist.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://zeitgeist.subscan.io/extrinsic/{hash}", + "account": "https://zeitgeist.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-zeitgeist" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "addressPrefix": 73, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Litmus", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "priceId": "litentry", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.litmus-parachain.litentry.io", + "name": "Litenry node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://litmus.subscan.io/extrinsic/{hash}", + "account": "https://litmus.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litmus.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litmus" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", + "addressPrefix": 131, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Subsocial", + "assets": [ + { + "assetId": 0, + "symbol": "SUB", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg" + } + ], + "nodes": [ + { + "url": "wss://para.f3joule.space", + "name": "Subsocial node" + }, + { + "url": "wss://para.subsocial.network", + "name": "Dappforce node" + } + ], + "explorers": [ + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/subsocial.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-subsocial" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg", + "addressPrefix": 28 + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Crust Shadow", + "assets": [ + { + "assetId": 0, + "symbol": "CSM", + "precision": 12, + "priceId": "crust-storage-market", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/CrustShadow.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2-shadow.crust.network/", + "name": "Crust node" + }, + { + "url": "wss://rpc-shadow.crust.network/", + "name": "Public Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://shadow.subscan.io/extrinsic/{hash}", + "account": "https://shadow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust_shadow.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-shadow" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "crustshadow" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "addressPrefix": 66, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Integritee Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "TEER", + "precision": 12, + "priceId": "integritee", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Integritee.svg" + } + ], + "nodes": [ + { + "url": "wss://integritee-kusama.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://kusama.api.integritee.network", + "name": "Integritee node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://integritee.subscan.io/extrinsic/{hash}", + "account": "https://integritee.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/Integritee.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-integritee" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee.svg", + "addressPrefix": 13 + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Centrifuge Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CFG", + "precision": 18, + "priceId": "centrifuge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Centrifuge.svg" + } + ], + "nodes": [ + { + "url": "wss://fullnode.parachain.centrifuge.io", + "name": "Centrifuge node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://centrifuge-parachain.subscan.io/extrinsic/{hash}", + "account": "https://centrifuge-parachain.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/centrifuge.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-centrifuge" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://centrifuge.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg", + "addressPrefix": 36, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Efinity", + "assets": [ + { + "assetId": 0, + "symbol": "EFI", + "precision": 18, + "priceId": "efinity", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Efinity.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.efinity.io", + "name": "Efinity node" + }, + { + "url": "wss://efinity-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://efinity.subscan.io/extrinsic/{hash}", + "account": "https://efinity.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/efinity.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-efinity" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg", + "addressPrefix": 1110, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "HydraDX", + "assets": [ + { + "assetId": 0, + "symbol": "HDX", + "precision": 12, + "priceId": "hydradx", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/HydraDX.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "17540000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DAI", + "precision": 18, + "priceId": "dai", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/DAI.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LRNA", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LRNA.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "400000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "WETH-worm", + "precision": 18, + "priceId": "ethereum-wormhole", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WETH-worm.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "7000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "WBTC-worm", + "precision": 8, + "priceId": "wrapped-bitcoin", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/WBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "44", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.hydradx.cloud", + "name": "Calactic Council node" + }, + { + "url": "wss://hydradx-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://hydradx.subscan.io/extrinsic/{hash}", + "account": "https://hydradx.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hydra_dx.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-hydra" + } + ], + "governance": [ + { + "type": "subsquare", + "url": "https://hydradx.subsquare.io/api" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg", + "addressPrefix": 63, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Interlay", + "assets": [ + { + "assetId": 0, + "symbol": "INTR", + "precision": 10, + "priceId": "interlay", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Interlay.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0002", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "iBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/interBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0001", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KINT", + "precision": 12, + "priceId": "kintsugi", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "kBTC", + "precision": 8, + "priceId": "bitcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x000a", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "LDOT", + "precision": 10, + "priceId": "liquid-staking-dot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LDOT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "USDT", + "precision": 6, + "priceId": "tether", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://api.interlay.io/parachain", + "name": "Kintsugi Labs node" + }, + { + "url": "wss://interlay.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://interlay.subscan.io/extrinsic/{hash}", + "account": "https://interlay.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/interlay.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-interlay" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg", + "addressPrefix": 2032 + }, + { + "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Nodle Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "NODL", + "precision": 11, + "priceId": "nodle-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Nodle.svg" + } + ], + "nodes": [ + { + "url": "wss://nodle-parachain.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://eden-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://nodle.subscan.io/extrinsic/{hash}", + "account": "https://nodle.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/nodle.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-nodle" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", + "addressPrefix": 37 + }, + { + "chainId": "55b88a59dded27563391d619d805572dd6b6b89d302b0dd792d01b3c41cfe5b1", + "name": "Singular testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://staging.node.rmrk.app", + "name": "Singular DEV node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/singular_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Singular_Testnet.svg", + "addressPrefix": 0, + "options": [ + "testnet" + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Phala", + "assets": [ + { + "assetId": 0, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Phala.svg" + } + ], + "nodes": [ + { + "url": "wss://api.phala.network/ws", + "name": "Phala node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://phala.subscan.io/extrinsic/{hash}", + "account": "https://phala.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/phala.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-phala" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", + "addressPrefix": 30, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Turing", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "aUSD", + "precision": 12, + "priceId": "acala-dollar", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x02000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "KAR", + "precision": 12, + "priceId": "karura", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", + "typeExtras": { + "currencyIdScale": "0x03000000", + "currencyIdType": "u32", + "existentialDeposit": "100000000000", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "LKSM", + "precision": 12, + "priceId": "liquid-ksm", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "HKO", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HKO.svg", + "typeExtras": { + "currencyIdScale": "0x05000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000000", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "sKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/sKSM.svg", + "typeExtras": { + "currencyIdScale": "0x06000000", + "currencyIdType": "u32", + "existentialDeposit": "500000000", + "transfersEnabled": true + } + }, + { + "assetId": 7, + "symbol": "PHA", + "precision": 12, + "priceId": "pha", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/Phala.svg", + "typeExtras": { + "currencyIdScale": "0x07000000", + "currencyIdType": "u32", + "existentialDeposit": "10000000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc.turing.oak.tech", + "name": "Turing node" + }, + { + "url": "wss://turing-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing.json", + "overridesCommon": true + }, + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://turing.subscan.io/extrinsic/{hash}", + "account": "https://turing.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-turing" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "turing" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg", + "addressPrefix": 51, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e", + "name": "Aleph Zero", + "assets": [ + { + "assetId": 0, + "symbol": "AZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.azero.dev", + "name": "Aleph Zero node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://alephzero.subscan.io/extrinsic/{hash}", + "account": "https://alephzero.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ], + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-aleph-zero" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero.svg", + "addressPrefix": 42 + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Composable Finance", + "assets": [ + { + "assetId": 0, + "symbol": "LAYR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Composable.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.composable.finance", + "name": "Composable node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://composable.subscan.io/extrinsic/{hash}", + "account": "https://composable.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/composable.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-composable" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "composable" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png", + "addressPrefix": 50, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "name": "Polkadex", + "assets": [ + { + "assetId": 0, + "symbol": "PDEX", + "priceId": "polkadex", + "staking": "relaychain", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadex.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.polkadex.trade", + "name": "Polkadex team node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polkadex.subscan.io/extrinsic/{hash}", + "account": "https://polkadex.subscan.io/account/{address}", + "event": null + }, + { + "name": "Sub.ID", + "account": "https://sub.id/{address}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polkadex.json", + "overridesCommon": true + }, + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-polkadex" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "polkadex" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg", + "addressPrefix": 88, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "OriginTrail Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "OTP", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/OriginTrail.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.origin-trail.network", + "name": "TraceLabs node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/origintrail.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-origin-trail" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg", + "addressPrefix": 101 + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Bifrost Polkadot", + "assets": [ + { + "assetId": 0, + "symbol": "BNC", + "precision": 12, + "priceId": "bifrost-native-coin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg" + }, + { + "assetId": 1, + "symbol": "GLMR", + "precision": 18, + "priceId": "moonbeam", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonbeam.svg", + "typeExtras": { + "currencyIdScale": "0x0801", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000000000", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "DOT", + "precision": 10, + "priceId": "polkadot", + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0800", + "currencyIdType": "node_primitives.currency.CurrencyId", + "existentialDeposit": "1000000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://hk.p.bifrost-rpc.liebi.com/ws", + "name": "Liebi node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bifrost.subscan.io/extrinsic/{hash}", + "account": "https://bifrost.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bifrost_polkadot.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bifrost-polkadot" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg", + "addressPrefix": 6 + }, + { + "chainId": "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Litentry", + "assets": [ + { + "assetId": 0, + "symbol": "LIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Litentry.svg", + "priceId": "litentry" + } + ], + "nodes": [ + { + "url": "wss://rpc.litentry-parachain.litentry.io", + "name": "Litentry node" + }, + { + "url": "wss://litentry-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/litentry.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-litentry" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", + "addressPrefix": 31 + }, + { + "chainId": "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "UNIQUE", + "assets": [ + { + "assetId": 0, + "symbol": "UNQ", + "precision": 18, + "priceId": "unique-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Unique.svg" + } + ], + "nodes": [ + { + "url": "wss://eu-ws.unique.network/", + "name": "Unique Europe node" + }, + { + "url": "wss://us-ws.unique.network/", + "name": "Unique America node" + }, + { + "url": "wss://asia-ws.unique.network/", + "name": "Unique Asia node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://unique.subscan.io/extrinsic/{hash}", + "account": "https://unique.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/unique.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-unique" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg", + "addressPrefix": 7391 + }, + { + "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Dora Factory", + "assets": [ + { + "assetId": 0, + "symbol": "DORA", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DoraFactory.svg", + "priceId": "dora-factory" + } + ], + "nodes": [ + { + "url": "wss://kusama.dorafactory.org", + "name": "Dora node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dorafactory.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dora" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg", + "addressPrefix": 128 + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Mangata X", + "assets": [ + { + "assetId": 0, + "symbol": "MGX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/MangataX.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x00000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "KSM", + "precision": 12, + "priceId": "kusama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x04000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "ETH", + "precision": 18, + "priceId": "ethereum", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ETH.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01000000", + "currencyIdType": "u32", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://prod-kusama-collator-01.mangatafinance.cloud", + "name": "Mangata node" + }, + { + "url": "wss://mangata-x.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://mangatax.subscan.io/extrinsic/{hash}", + "account": "https://mangatax.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/mangatax.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg", + "addressPrefix": 42 + }, + { + "chainId": "05d5279c52c484cc80396535a316add7d47b1c5b9e0398dd1f584149341460c5", + "name": "Aleph Zero Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "TZERO", + "staking": "aleph-zero", + "priceId": "aleph-zero", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Aleph_zero.svg" + } + ], + "nodes": [ + { + "url": "wss://ws.test.azero.dev", + "name": "Aleph Zero node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aleph_zero_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/AlephZero_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "name": "Moonbase Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "UNIT", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg" + } + ], + "nodes": [ + { + "url": "wss://frag-moonbase-relay-rpc-ws.g.moonbase.moonbeam.network", + "name": "PureStake node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/moonbase_relay.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbase_Alpha_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", + "name": "Polymesh Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://testnet-rpc.polymesh.live", + "name": "Polymath node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Pichiu", + "assets": [ + { + "assetId": 0, + "symbol": "PCHU", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Pichiu.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pichiu.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pichiu" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg", + "addressPrefix": 42, + "options": [ + "governance-v1" + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ] + }, + { + "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kabocha", + "assets": [ + { + "assetId": 0, + "symbol": "KAB", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kabocha.svg" + } + ], + "nodes": [ + { + "url": "wss://kabocha.jelliedowl.com", + "name": "JelliedOwl node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kabocha.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kabocha" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg", + "addressPrefix": 27 + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tanganika", + "assets": [ + { + "assetId": 0, + "symbol": "DHX", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/DataHighway.svg", + "priceId": "datahighway" + } + ], + "nodes": [ + { + "url": "wss://tanganika.datahighway.com", + "name": "DataHighway node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://datahighway.subscan.io/extrinsic/{hash}", + "account": "https://datahighway.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tanganika.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tanganika" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "tanganika" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg", + "addressPrefix": 33, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Bajun", + "assets": [ + { + "assetId": 0, + "symbol": "BAJU", + "precision": 12, + "priceId": "ajuna-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bajun.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.bajun.network", + "name": "AjunaNetwork node" + }, + { + "url": "wss://bajun.api.onfinality.io/public-ws", + "name": "OnFinality node" + }, + { + "url": "wss://bajun.public.curie.radiumblock.co/ws", + "name": "Radium node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://bajun.subscan.io/extrinsic/{hash}", + "account": "https://bajun.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bajun.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-bajun" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg", + "addressPrefix": 1337 + }, + { + "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Imbue", + "assets": [ + { + "assetId": 0, + "symbol": "IMBU", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Imbue.svg" + } + ], + "nodes": [ + { + "url": "wss://imbue-kusama.imbue.network", + "name": "Imbue node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/imbue.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-imbue" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg", + "addressPrefix": 42 + }, + { + "chainId": "a834e4bd816a126565e6a06a7582ceb88b4419e1f926e573ca0f323cf778cd5f", + "name": "Arctic Relay Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://arctic-relaychain.web3labs.com:9949/", + "name": "Arctic node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/arctic_relay_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "6408de7737c59c238890533af25896a2c20608d8b380bb01029acb392781063e", + "name": "Rococo Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "ROC", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Rococo.svg" + } + ], + "nodes": [ + { + "url": "wss://rococo-rpc.polkadot.io/", + "name": "Rococo node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/rococo.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Rococo_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "crowdloans" + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Tinkernet", + "assets": [ + { + "assetId": 0, + "symbol": "TNKR", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Tinkernet.svg" + } + ], + "nodes": [ + { + "url": "wss://invarch-tinkernet.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/tinkernet.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-tinkernet" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg", + "addressPrefix": 117 + }, + { + "chainId": "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "GM", + "assets": [ + { + "assetId": 0, + "symbol": "FREN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/FREN.svg" + }, + { + "assetId": 1, + "symbol": "GM", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GM.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x01", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 2, + "symbol": "GN", + "precision": 0, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GN.svg", + "type": "orml", + "typeExtras": { + "currencyIdScale": "0x02", + "currencyIdType": "gm_chain_runtime.Coooooins", + "existentialDeposit": "0", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://ws.gm.bldnodes.org", + "name": "bLd node" + }, + { + "url": "wss://intern.gmordie.com", + "name": "GM intern node" + }, + { + "url": "wss://leemo.gmordie.com", + "name": "Leemo node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/gm.json", + "overridesCommon": true + }, + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gm-network" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg", + "addressPrefix": 7013 + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Amplitude", + "assets": [ + { + "assetId": 0, + "symbol": "AMPE", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Amplitude.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-amplitude.pendulumchain.tech", + "name": "PendulumChain node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-amplitude" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "amplitude" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/amplitude.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg", + "addressPrefix": 57, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://mainnet.ternoa.network", + "name": "CapsuleCorp node" + } + ], + "explorers": [ + { + "name": "Ternoa explorer", + "extrinsic": "https://explorer.ternoa.com/extrinsic/{hash}", + "account": "https://explorer.ternoa.com/account/{address}", + "event": null + } + ], + "externalApi": { + "staking": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ], + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-ternoa" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa.svg", + "addressPrefix": 42 + }, + { + "chainId": "18bcdb75a0bba577b084878db2dc2546eb21504eaad4b564bb7d47f9d02b6ace", + "name": "Ternoa Alphanet", + "assets": [ + { + "assetId": 0, + "symbol": "CAPS", + "priceId": "coin-capsule", + "staking": "relaychain", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Ternoa.svg" + } + ], + "nodes": [ + { + "url": "wss://alphanet.ternoa.com", + "name": "Ternoa Alphanet node" + } + ], + "explorers": [ + { + "name": "Ternoa Alphanet explorer", + "extrinsic": "https://explorer-alphanet.ternoa.dev/extrinsic/{hash}", + "account": "https://explorer-alphanet.ternoa.dev/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ternoa_alphanet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ternoa_Alphanet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "d54f0988402deb4548538626ce37e4a318441ea0529ca369400ebec4e04dfe4b", + "name": "Turing Staging", + "assets": [ + { + "assetId": 0, + "symbol": "TUR", + "staking": "turing", + "precision": 10, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Turing.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc.turing-staging.oak.tech", + "name": "OAK node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/turing_staging.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing_Staging.svg", + "addressPrefix": 51, + "options": [ + "testnet" + ] + }, + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "name": "Governance2 Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "Unit", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/GOV2.svg" + } + ], + "nodes": [ + { + "url": "wss://governance2-testnet.litentry.io", + "name": "Development node" + } + ], + "explorers": [ + { + "name": "Governance2 Testnet explorer", + "extrinsic": "https://gov2.statescan.io/extrinsic/{hash}", + "account": "https://gov2.statescan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/governance2_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kylin", + "assets": [ + { + "assetId": 0, + "symbol": "KYL", + "precision": 18, + "priceId": "kylin-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KYL.svg" + } + ], + "nodes": [ + { + "url": "wss://polkadot.kylin-node.co.uk", + "name": "Kylin node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kylin" + } + ], + "governance": [ + { + "type": "polkassembly", + "url": "https://polkassembly-hasura.herokuapp.com/v1/graphql", + "parameters": { + "network": "kylin" + } + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kylin.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg", + "addressPrefix": 42 + }, + { + "chainId": "e71578b37a7c799b0ab4ee87ffa6f059a6b98f71f06fb8c84a8d88013a548ad6", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Darwinia", + "assets": [ + { + "assetId": 0, + "symbol": "RING", + "precision": 18, + "priceId": "darwinia-network-native-token", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/RING.svg" + } + ], + "nodes": [ + { + "url": "wss://parachain-rpc.darwinia.network", + "name": "Darwinia Network node" + }, + { + "url": "wss://darwinia-rpc.dwellir.com", + "name": "Dwellir node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://darwinia-parachain.subscan.io/extrinsic/{hash}", + "account": "https://darwinia-parachain.subscan.io/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-darwinia" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/darwinia.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "addressPrefix": 18 + }, + { + "chainId": "7838c3c774e887c0a53bcba9e64f702361a1a852d5550b86b58cd73827fa1e1e", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Kapex", + "assets": [ + { + "assetId": 0, + "symbol": "KAPEX", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KAPEX.svg" + } + ], + "nodes": [ + { + "url": "wss://k-ui.kapex.network", + "name": "Totem node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-kapex" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kapex.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg", + "addressPrefix": 2007 + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh", + "assets": [ + { + "assetId": 0, + "symbol": "POLYX", + "precision": 6, + "priceId": "polymesh", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polymesh.svg", + "staking": "relaychain" + } + ], + "nodes": [ + { + "url": "wss://mainnet-rpc.polymesh.network", + "name": "Polymesh node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://polymesh.subscan.io/extrinsic/{hash}", + "account": "https://polymesh.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/polymesh_mainnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polymesh.svg", + "addressPrefix": 12 + }, + { + "chainId": "8da6a03e0989154ff8c1977cbc0cbd55f6879d8759c272a4f3c078cef794bf5f", + "name": "Beresheet", + "assets": [ + { + "assetId": 0, + "symbol": "tEDG", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Edgeware.svg" + } + ], + "nodes": [ + { + "url": "wss://beresheet.jelliedowl.net", + "name": "JelliedOwl node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/beresheet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Beresheet.svg", + "addressPrefix": 7, + "options": [ + "testnet" + ] + }, + { + "chainId": "b34f6cd03a41f0fab38ba9fd5b11cce5f303633c46f39f0c6fdc7c3c602bafa9", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Snow", + "assets": [ + { + "assetId": 0, + "symbol": "ICZ", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/ICZ.svg" + } + ], + "nodes": [ + { + "url": "wss://snow-rpc.icenetwork.io", + "name": "Snow node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://snow.subscan.io/extrinsic/{hash}", + "account": "https://snow.subscan.io/account/{address}", + "event": null + }, + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/snow.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg", + "addressPrefix": 2207, + "options": [ + "governance-v1" + ] + }, + { + "chainId": "f460fe68f5f34ced6b18d8e4612410e334c55521bf27714cdca654b63b685ae6", + "name": "Novasama Testnet - Kusama", + "assets": [ + { + "assetId": 0, + "symbol": "KSM", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kusama.svg" + } + ], + "nodes": [ + { + "url": "wss://novasama.co", + "name": "Development node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/novasama_gov2_testnet.json", + "overridesCommon": true + }, + "externalApi": { + "governance-delegations": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-gov-test" + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Governance2_Testnet.svg", + "addressPrefix": 2, + "options": [ + "testnet", + "governance" + ] + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "DAO IPCI", + "assets": [ + { + "assetId": 0, + "symbol": "MITO", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MITO.svg" + } + ], + "nodes": [ + { + "url": "wss://kusama.rpc.ipci.io", + "name": "Airalab node" + } + ], + "explorers": [ + { + "name": "Polkaholic", + "account": "https://polkaholic.io/account/{address}", + "extrinsic": "https://polkaholic.io/tx/{hash}" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-dao-ipci" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/dao_ipci.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg", + "addressPrefix": 32 + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "assets": [ + { + "assetId": 0, + "symbol": "MYRIA", + "precision": 18, + "priceId": "myriad-social", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MYRIA.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/myriad/a4cb0a6e30ff5233a3567eb4e8cb71e0", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/myriad/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/myriad.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Myriad.svg", + "addressPrefix": 42 + }, + { + "chainId": "a7113159e275582ee71ee499b24378a2416f34dc5aaf714443f0d11c6c3d99d3", + "name": "Fusotao", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 18, + "priceId": "fusotao", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO.svg" + } + ], + "nodes": [ + { + "url": "wss://gateway.mainnet.octopus.network/fusotao/0efwa9v0crdx4dg3uj8jdmc5y7dj4ir2", + "name": "Octopus node" + } + ], + "explorers": [ + { + "name": "Explorer", + "extrinsic": null, + "account": "https://explorer.mainnet.oct.network/fusotao/accounts/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/fusotao.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Fusotao.svg", + "addressPrefix": 42 + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "assets": [ + { + "assetId": 0, + "symbol": "XX", + "precision": 9, + "priceId": "xxcoin", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/XX.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-hetzner.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://rpc-do.xx.network", + "name": "xx Foundation node" + }, + { + "url": "wss://xx.api.onfinality.io/public-ws", + "name": "OnFinality node" + } + ], + "explorers": [ + { + "name": "XX explorer", + "extrinsic": "https://explorer.xx.network/extrinsics/{hash}", + "account": "https://explorer.xx.network/accounts/{address}", + "event": null + }, + { + "name": "Polkastats", + "extrinsic": "https://xx.polkastats.io/extrinsic/{hash}", + "account": "https://xx.polkastats.io/account/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-xx-network" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/xx_network.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/XX_network.svg", + "addressPrefix": 55 + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Pendulum", + "assets": [ + { + "assetId": 0, + "symbol": "PEN", + "precision": 12, + "priceId": "pendulum-chain", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg" + }, + { + "assetId": 1, + "symbol": "DOT", + "precision": 10, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Polkadot.svg", + "typeExtras": { + "currencyIdScale": "0x0100", + "currencyIdType": "pendulum_runtime.currency.CurrencyId", + "existentialDeposit": "1000", + "transfersEnabled": true + } + } + ], + "nodes": [ + { + "url": "wss://rpc-pendulum.prd.pendulumchain.tech", + "name": "Pendulum node" + } + ], + "externalApi": { + "history": [ + { + "type": "subquery", + "url": "https://api.subquery.network/sq/nova-wallet/nova-wallet-pendulum" + } + ] + }, + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/pendulum.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "addressPrefix": 56 + }, + { + "chainId": "a6ffcef7fb8caadf7f6c5ad8ada65e3eaa90d1604f3eabda546ff1d486865a0c", + "name": "Aventus Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.public-testnet.aventus.io", + "name": "Aventus testnet node" + } + ], + "explorers": [ + { + "name": "Aventus testnet explorer", + "extrinsic": "https://explorer.testnet.aventus.io/transaction/{hash}", + "account": "https://explorer.testnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus_Testnet.svg", + "addressPrefix": 42, + "options": [ + "testnet" + ] + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Aventus", + "assets": [ + { + "assetId": 0, + "symbol": "AVT", + "precision": 18, + "priceId": "aventus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AVT.svg" + } + ], + "nodes": [ + { + "url": "wss://public-rpc.mainnet.aventus.io", + "name": "Aventus node" + } + ], + "explorers": [ + { + "name": "Aventus explorer", + "extrinsic": "https://explorer.mainnet.aventus.io/transaction/{hash}", + "account": "https://explorer.mainnet.aventus.io/address/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/aventus.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg", + "addressPrefix": 42 + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Crust Polkadot Parachain", + "assets": [ + { + "assetId": 0, + "symbol": "CRU", + "precision": 12, + "priceId": "crust-network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/CRU.svg" + } + ], + "nodes": [ + { + "url": "wss://crust-parachain.crustapps.net", + "name": "Crust node" + } + ], + "explorers": [ + { + "name": "Subscan", + "extrinsic": "https://crust-parachain.subscan.io/extrinsic/{hash}", + "account": "https://crust-parachain.subscan.io/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/crust.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", + "addressPrefix": 88 + }, + { + "chainId": "3a5a5cd27eb15fd26c37315a0f0b938733bb798c897428448efac5e6150cad06", + "parentId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "name": "Kintsugi Testnet", + "assets": [ + { + "assetId": 0, + "symbol": "KINT", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Kintsugi.svg", + "typeExtras": { + "currencyIdScale": "0x000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 1, + "symbol": "kBTC", + "precision": 8, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 3, + "symbol": "LKSM", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/LKSM.svg", + "typeExtras": { + "currencyIdScale": "0x0102000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 4, + "symbol": "USDT", + "precision": 6, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/USDT.svg", + "typeExtras": { + "currencyIdScale": "0x0103000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 5, + "symbol": "aUSD", + "precision": 12, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AUSD.svg", + "typeExtras": { + "currencyIdScale": "0x0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": true + } + }, + { + "assetId": 6, + "symbol": "KSM-kBTC", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KBTC.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000b", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 7, + "symbol": "kBTC-USDT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KBTC-USDT.svg", + "typeExtras": { + "currencyIdScale": "0x03000b0101000000", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + }, + { + "assetId": 8, + "symbol": "KSM-KINT", + "precision": 18, + "type": "orml", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/KSM-KINT.svg", + "typeExtras": { + "currencyIdScale": "0x03000a000c", + "currencyIdType": "interbtc_primitives.CurrencyId", + "existentialDeposit": "0", + "transfersEnabled": false + } + } + ], + "nodes": [ + { + "url": "wss://api-dev-kintsugi.interlay.io:443/parachain", + "name": "Kintsugi Labs" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/kintsugi_testnet.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi_Testnet.svg", + "addressPrefix": 2092, + "options": [ + "testnet" + ] + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Hashed Network", + "assets": [ + { + "assetId": 0, + "symbol": "HASH", + "precision": 18, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/HASH.svg" + } + ], + "nodes": [ + { + "url": "wss://c1.hashed.network", + "name": "Hashed systems 1 node" + }, + { + "url": "wss://c2.hashed.network", + "name": "Hashed systems 2 node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/hashed.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg", + "addressPrefix": 42 + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "assets": [ + { + "assetId": 0, + "symbol": "TAO", + "precision": 9, + "priceId": "bittensor", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/TAO_bittensor.svg" + } + ], + "nodes": [ + { + "url": "wss://entrypoint-finney.opentensor.ai:443", + "name": "Opentensor Fdn node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/bittensor.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bittensor.svg", + "addressPrefix": 42 + }, + { + "chainId": "eip155:137", + "name": "Polygon", + "assets": [ + { + "assetId": 0, + "symbol": "MATIC", + "priceId": "matic-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MATIC.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://polygon-mainnet.public.blastapi.io", + "name": "Polygon node" + } + ], + "explorers": [ + { + "name": "Polygonscan", + "extrinsic": "https://polygonscan.com/tx/{hash}", + "account": "https://polygonscan.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://api.polygonscan.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polygon.svg", + "addressPrefix": 137, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "eip155:2109", + "name": "Exosama", + "assets": [ + { + "assetId": 0, + "symbol": "SAMA", + "priceId": "exosama-network", + "type": "evmNative", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/MOONSAMA.svg", + "precision": 18 + } + ], + "nodes": [ + { + "url": "wss://rpc.exosama.com", + "name": "Exosama node" + } + ], + "explorers": [ + { + "name": "Exosama explorer", + "extrinsic": "https://explorer.exosama.com/tx/{hash}", + "account": "https://explorer.exosama.com/address/{address}", + "event": null + } + ], + "externalApi": { + "history": [ + { + "type": "etherscan", + "url": "https://explorer.exosama.com/api", + "parameters": { + "assetType": "evm" + } + } + ] + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Exosama.svg", + "addressPrefix": 2109, + "options": [ + "ethereumBased", + "noSubstrateRuntime" + ] + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "assets": [ + { + "assetId": 0, + "symbol": "P3D", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/P3D.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc2.3dpass.org", + "name": "3DPass node" + } + ], + "explorers": [ + { + "name": "3DPass explorer", + "extrinsic": "https://explorer.3dpass.org/extrinsic/{hash}", + "account": "https://explorer.3dpass.org/account/{address}", + "event": null + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/3dpass.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/3DPass.svg", + "addressPrefix": 71 + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "parentId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "name": "Ajuna", + "assets": [ + { + "assetId": 0, + "symbol": "AJUN", + "precision": 12, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/AJUN.svg" + } + ], + "nodes": [ + { + "url": "wss://rpc-parachain.ajuna.network", + "name": "Ajuna node" + }, + { + "url": "wss://ajuna.public.curie.radiumblock.co/ws", + "name": "RadiumBlock node" + } + ], + "types": { + "url": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/ajuna.json", + "overridesCommon": true + }, + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg", + "addressPrefix": 1328 + } +] diff --git a/crowdloan/kusama.json b/crowdloan/kusama.json index 05194cb57..61663229f 100644 --- a/crowdloan/kusama.json +++ b/crowdloan/kusama.json @@ -5,7 +5,7 @@ "token": "KAR", "description": "All-in-one DeFi hub of Kusama", "website": "https://acala.network/karura", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", "rewardRate": 12, "customFlow": "Karura" }, @@ -15,7 +15,7 @@ "token": "SDN", "description": "Multi-chain decentralized application layer on Kusama", "website": "https://shiden.astar.network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", "rewardRate": 25 }, { @@ -24,7 +24,7 @@ "token": "BNC", "description": "A parachain designed for staking's liquidity", "website": "https://bifrost.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Kusama.svg", "rewardRate": 22, "customFlow": "Bifrost" }, @@ -34,7 +34,7 @@ "token": "KSX", "description": "Crypto Asset Gateway for Kusama Ecosystem", "website": "https://chainx-org.medium.com/chainx-kusama-parachain-sherpax-light-paper-5341ff855c9c", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SherpaX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SherpaX.svg", "rewardRate": 15 }, { @@ -43,7 +43,7 @@ "token": "CSM", "description": "Incentives decentralized storage & cloud ecosystem on Kusama", "website": "https://crust.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg", "rewardRate": 300 }, { @@ -52,7 +52,7 @@ "token": "MOVR", "description": "Please use Moonriver DApp for contribution", "website": "https://moonbeam.network/networks/moonriver/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", "rewardRate": 4.5 }, { @@ -61,7 +61,7 @@ "token": "PHA", "description": "Transparent and Private Global Computation Cloud on Kusama", "website": "https://phala.network/khala/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Khala.svg", "rewardRate": 150 }, { @@ -70,7 +70,7 @@ "token": "CRING", "description": "Cross-chain communication, smart contracts and NFT on Kusama", "website": "https://crab.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Darwinia.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg", "rewardRate": 25 }, { @@ -79,7 +79,7 @@ "token": "PKS", "description": "Production hub for creating DeFi & NFT apps on Kusama", "website": "https://polkasmith.polkafoundry.com/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/PolkaSmith.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/PolkaSmith.svg", "rewardRate": 350 }, { @@ -88,7 +88,7 @@ "token": "SKU", "description": "A foundational layer for cross-chain compatibility.", "website": "https://auction.clover.finance/#/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Sakura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Sakura.svg", "rewardRate": 200 }, { @@ -97,7 +97,7 @@ "token": "SGB", "description": "Blockchain infrastructure for distributed games & mobile applications.", "website": "http://subgame.org/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SubGame_Gamma.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SubGame_Gamma.svg", "rewardRate": 28 }, { @@ -106,7 +106,7 @@ "token": "AMAS", "description": "A Decentralized Cross-chain Oracle Service Protocol.", "website": "https://www.aresprotocol.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Mars.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Mars.svg", "rewardRate": 1 }, { @@ -115,7 +115,7 @@ "token": "GENS", "description": "The boldest DeFi one-stop-shop and R&D hub", "website": "https://genshiro.equilibrium.io/en/plo", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Genshiro.svg", "rewardRate": 2000 }, { @@ -124,7 +124,7 @@ "token": "XRT", "description": "Futuristic, secure, and server-less IoT platform on top of Ethereum && Polkadot", "website": "https://robonomics.network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", "rewardRate": 5 }, { @@ -133,7 +133,7 @@ "token": "AIR", "description": "The home for tokenizing experimental assets", "website": "https://centrifuge.io/altair", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Altair.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Altair.svg", "rewardRate": 400 }, { @@ -142,7 +142,7 @@ "token": "KPN", "description": "Decentralized infrastructure service network", "website": "https://apron-network.medium.com/apron-network-will-compete-the-kusama-parachain-slot-auction-14c13de5a645", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Kpron.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kpron.svg", "rewardRate": 80 }, { @@ -151,7 +151,7 @@ "token": "BSX", "description": "Liquidity protocol build on Kusama", "website": "https://bsx.fi/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Basilisk.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Basilisk.svg", "rewardRate": 67500 }, { @@ -160,7 +160,7 @@ "token": "LOOM", "description": "Multichain Interoperability Platform", "website": "https://medium.com/loom-network/loom-kusama-crowdloan-launch-3a40a14cba76", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Loom.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Loom.svg", "rewardRate": 100 }, { @@ -169,7 +169,7 @@ "token": "KILT", "description": "Blockchain identity protocol for issuing self-sovereign, anonymous, verifiable credentials", "website": "https://www.kilt.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", "rewardRate": 25 }, { @@ -178,7 +178,7 @@ "token": "TEER", "description": "Scalable solution for securely processing sensitive data", "website": "https://www.integritee.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Integritee_Kusama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee_Kusama.svg", "rewardRate": 10 }, { @@ -187,7 +187,7 @@ "token": "KINT", "description": "Radically open Bitcoin on Kusama", "website": "https://interlay.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kintsugi.svg", "rewardRate": 3.75 }, { @@ -196,7 +196,7 @@ "token": "KMA", "description": "Private layer built for the entire Kusama ecosystem", "website": "https://www.calamari.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", "rewardRate": 0 }, { @@ -205,7 +205,7 @@ "token": "PICA", "description": "Cross-chain interoperable infrastructure", "website": "https://picasso.composable.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Picasso.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Picasso.svg", "rewardRate": 20 }, { @@ -214,7 +214,7 @@ "token": "HKO", "description": "Decentralized money market protocol that offers lending, staking, and borrowing", "website": "https://parallel.fi/index.html", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg", "rewardRate": 200 }, { @@ -223,7 +223,7 @@ "token": "NEER", "description": "An open protocol for managing & incentivizing communities using gamification", "website": "https://bit.country/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bit.Country_Pioneer.svg", "rewardRate": 68 }, { @@ -232,7 +232,7 @@ "token": "QTZ", "description": "A scalable blockchain for composable NFTs with advanced economies", "website": "https://unique.network/quartz/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Quartz.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Quartz.svg", "rewardRate": 237 }, { @@ -241,7 +241,7 @@ "token": "GENS", "description": "The boldest DeFi one-stop-shop and R&D hub", "website": "https://genshiro.equilibrium.io/en/plo", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Genshiro.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Genshiro.svg", "rewardRate": 2000 }, { @@ -250,7 +250,7 @@ "token": "SUB", "description": "Subsocial - Decentralized social network on Polkadot & IPFS", "website": "https://subsocial.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Subsocial_Parachain.svg" }, { "paraid": "2101", @@ -258,7 +258,7 @@ "token": "ZTG", "description": "Zeitgeist is an evolving blockchain for prediction markets and futarchy", "website": "https://zeitgeist.pm/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Zeitgeist.svg", "rewardRate": 80 }, { @@ -267,7 +267,7 @@ "token": "XRT", "description": "Robonomics platform will allow to build trust among the autonomous robots services, provide direct user access for ordering products from autonomous factories and services", "website": "https://robonomics.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg", "rewardRate": 3.5 }, { @@ -276,7 +276,7 @@ "token": "PCHU", "description": "Pichiu aims to build a cross-chain platform powering the data economy on Kusama", "website": "https://kylinnetwork.medium.com/announcing-pichiu-kylins-implementation-on-kusama-c1bf50404fd9", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Pichiu.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pichiu.svg" }, { "paraid": "2105", @@ -284,7 +284,7 @@ "token": "CRAB", "description": "Crab is a trustless multi-chain bridge hub network designed to become the foundational layer for the next generation of Web3.0 dapps and games on Kusama", "website": "https://darwinia.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Crab.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crab.svg" }, { "paraid": "2011", @@ -292,7 +292,7 @@ "token": "XOR", "description": "The SORA network is a living, breathing, growing infrastructure that is fit and flourishing as a standalone blockchain. It currently has a bridge connecting to the Ethereum blockchain.", "website": "https://sora.org", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SORA_Parachain.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SORA_Parachain.svg" }, { "paraid": "2106", @@ -300,7 +300,7 @@ "token": "LIT", "description": "Litmus is a Decentralized Identity Aggregation protocol on Kusama", "website": "https://kusama-crowdloan.litentry.com", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Litmus.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litmus.svg", "rewardRate": 30 }, { @@ -309,7 +309,7 @@ "token": "KICO", "description": "KICO Chain is the Kusama version of DICO Chain. DICO stands for DAO + ICO + Swap. DICO is positioned as a parachain of decentralized ICO.", "website": "https://dico.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/KICO.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KICO.svg" }, { "paraid": "2110", @@ -317,7 +317,7 @@ "token": "MGX", "description": "Mangata is a community-owned exchange for experienced traders & experimental tokens.", "website": "https://crowdloan.mangata.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/MangataX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/MangataX.svg" }, { "paraid": "2114", @@ -325,7 +325,7 @@ "token": "TUR", "description": "Turing Network aims to drive product usage of XCM by providing cross-chain automation for other parachains", "website": "https://oak.tech/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Turing.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Turing.svg" }, { "paraid": "2115", @@ -333,7 +333,7 @@ "token": "DORA", "description": "The DAO-as-a-Service Infrastructure for Decentralized Governance and Open Source Ventures", "website": "https://dorafactory.org/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/DoraFactory.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DoraFactory.svg" }, { "paraid": "2116", @@ -341,7 +341,7 @@ "token": "DHX", "description": "Tanganika DataHighway is a sophisticated IoT parachain, users may stake, govern, mine and otherwise participate using the new DHX token and its associated DAO, and Inter-Chain Data Market", "website": "https://www.datahighway.com/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tanganika_DataHighway.svg" }, { "paraid": "2118", @@ -349,7 +349,7 @@ "token": "LT", "description": "Listen is a voice social software based on decentralized data storage technology and blockchain technology", "website": "https://listen.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Listen.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Listen.svg" }, { "paraid": "2113", @@ -357,7 +357,7 @@ "token": "KAB", "description": "Kabocha is a holistic self-evolving grass-roots parachain project spawned from Edgeware, funding and incubating teams to build new public infrastructure", "website": "https://kabocha.network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Kabocha.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kabocha.svg" }, { "paraid": "2120", @@ -365,7 +365,7 @@ "token": "SDN", "description": "Multi-chain decentralized application layer on Kusama", "website": "https://shiden.astar.network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg", "rewardRate": 23.33 }, { @@ -374,7 +374,7 @@ "token": "BAJUN", "description": "The Bajun Network is Canary Network for Ajuna and will host games. It will be mainly used for testing and introducing new Ajuna features, services and functionalities", "website": "https://ajuna.io", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Bajun.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bajun.svg" }, { "paraid": "2003", @@ -382,7 +382,7 @@ "token": "KAR", "description": "All-in-one DeFi hub of Kusama", "website": "https://acala.network/karura", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Karura.svg", "rewardRate": 12, "customFlow": "Karura" }, @@ -392,7 +392,7 @@ "token": "MOVR", "description": "Please use Moonriver DApp for contribution", "website": "https://moonbeam.network/networks/moonriver/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonriver.svg", "rewardRate": 4.5 }, { @@ -401,7 +401,7 @@ "token": "IMBU", "description": "Imbue Network is a decentralised crowdfunding DAO built on top of the Polkadot blockchain platform", "website": "https://www.imbue.network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Imbue.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Imbue.svg" }, { "paraid": "2125", @@ -409,7 +409,7 @@ "token": "TNKR", "description": "The Tinkernet is the canary network of the InvArch Network, designed as the IP Asset & accelerated development staging grounds for the Kusama ecosystem", "website": "https://invarch.network/tinkernet", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Tinkernet.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Tinkernet.svg" }, { "paraid": "2124", @@ -417,7 +417,7 @@ "token": "AMPE", "description": "Amplitude is aiming to provide novel ways of utilizing fiat on DeFi", "website": "https://pendulumchain.org/amplitude", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Amplitude.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Amplitude.svg" }, { "paraid": "2126", @@ -425,7 +425,7 @@ "token": "HKO", "description": "Decentralized money market protocol that offers lending, staking, and borrowing", "website": "https://parallel.fi/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/ParallelHeiko.svg" }, { "paraid": "2123", @@ -433,7 +433,7 @@ "token": "FREN", "description": "GM solves the problem of the cold and isolated nature of crypto at large by encouraging the exchange of GMs and GNs across Dotsama", "website": "https://www.gmordie.com", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/GM.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/GM.svg" }, { "paraid": "2122", @@ -441,7 +441,7 @@ "token": "KMA", "description": "Private layer built for the entire Kusama ecosystem", "website": "https://www.calamari.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Calamari.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Calamari.svg", "rewardRate": 0 }, { @@ -450,6 +450,80 @@ "token": "ICZ", "description": "SNOW is EVM and eWASM-compatible and is optimized for ICONโ€™s BTP", "website": "https://icenetwork.io/snow/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SNOW.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg" + }, + { + "paraid": "2108", + "name": "KILT Spiritnet", + "token": "KILT", + "description": "Blockchain identity protocol for issuing self-sovereign, anonymous, verifiable credentials", + "website": "https://www.kilt.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/KILT_Spiritnet.svg", + "rewardRate": 25 + }, + { + "paraid": "2129", + "name": "SNOW", + "token": "ICZ", + "description": "SNOW is EVM and eWASM-compatible and is optimized for ICONโ€™s BTP", + "website": "https://icenetwork.io/snow/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SNOW.svg" + }, + { + "paraid": "2225", + "name": "Crust Shadow 2", + "token": "CSM", + "description": "Incentives decentralized storage & cloud ecosystem on Kusama", + "website": "https://crust.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Shadow.svg" + }, + { + "paraid": "2130", + "name": "2130", + "token": "ANY", + "description": "Unknown parachain", + "website": "https://parachains.info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Westend_Testnet.svg" + }, + { + "paraid": "2226", + "name": "Genshiro 2", + "token": "GENS", + "description": "The boldest DeFi one-stop-shop and R&D hub", + "website": "https://genshiro.equilibrium.io/en", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Genshiro.svg" + }, + { + "paraid": "2237", + "name": "Robonomics 2", + "token": "XRT", + "description": "Futuristic, secure, and server-less IoT platform on top of Ethereum && Polkadot", + "website": "https://robonomics.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Robonomics.svg" + }, + { + "paraid": "2222", + "name": "DAO IPCI", + "token": "MITO", + "description": "Blockchain technology for carbon markets, environmental assets and liabilities", + "website": "https://ipci.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/DAOIPCI.svg" + }, + { + "paraid": "2258", + "name": "Shiden 3", + "token": "SDN", + "description": "Multi-chain decentralized application layer on Kusama", + "website": "https://shiden.astar.network", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Shiden.svg" + }, + { + "paraid": "2241", + "name": "krest", + "token": "KREST", + "description": "krest is peaqโ€™s canary network - the world's first and only Economy of Things simulation network", + "website": "https://krest.peaq.network/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/krest.svg", + "rewardRate": 800 } ] diff --git a/crowdloan/polkadot-dev.json b/crowdloan/polkadot-dev.json index 094ada04c..08554347d 100644 --- a/crowdloan/polkadot-dev.json +++ b/crowdloan/polkadot-dev.json @@ -5,9 +5,10 @@ "token": "ACA", "description": "All-in-one DeFi hub of Polkadot", "website": "https://acala.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", "rewardRate": 10, - "customFlow": "Acala" + "customFlow": "Acala", + "movedToParaId": "3336" }, { "paraid": "2004", @@ -15,13 +16,14 @@ "token": "GLMR", "description": "Ethereum-compatible smart contract parachain on Polkadot", "website": "https://moonbeam.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", "customFlow": "Moonbeam", "extras": { "paraId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", "apiLink": "yy9252r9jh.api.purestake.io", "apiTokenName": "MOONBEAM_PROD_AUTH_TOKEN" - } + }, + "movedToParaId": "3342" }, { "paraid": "2006", @@ -29,7 +31,7 @@ "token": "ASTR", "description": "Astar is the Polkadot-native dApp hub supporting Ethereum, WebAssembly, dApp Staking, and Layer2 solutions", "website": "https://astar.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", "customFlow": "Astar" }, { @@ -38,7 +40,7 @@ "token": "LIT", "description": "The Litentry Network provides privacy-first, decentralized identity aggregation computing services", "website": "https://www.litentry.com/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Litentry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", "rewardRate": 2.5 }, { @@ -47,7 +49,7 @@ "token": "CLV", "description": "Clover is a substrate based smart contract platform built for Polkadot, with added support for Ethereum developers to participate in the Polkadot ecosystem", "website": "https://clover.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", "rewardRate": 4 }, { @@ -56,7 +58,7 @@ "token": "PARA", "description": "Parallel enables token holders and projects to flexibly and borderlessly put their idle capital to earn interests", "website": "https://parallel.fi/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Parallel.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", "rewardRate": 25 }, { @@ -65,7 +67,7 @@ "token": "CRU", "description": "Crust implements the incentive layer protocol for decentralized storage", "website": "https://crust.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Crust.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", "rewardRate": 0.2 }, { @@ -74,7 +76,7 @@ "token": "MANTA", "description": "Manta Network is focused on applying cutting-edge cryptographic constructions such as zkSNARKs to deliver end-to-end privacy guarantees for blockchain apps", "website": "https://manta.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Manta.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", "rewardRate": 50 }, { @@ -83,7 +85,7 @@ "token": "GOV", "description": "SubDAO Network is a Cross-chain Platform to link DAO and DApp on Polkadot", "website": "https://www.subdao.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SubDAO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SubDAO.svg", "rewardRate": 20 }, { @@ -92,7 +94,7 @@ "token": "RING", "description": "Darwinia is a trustless multi-chain bridge hub network designed to become the foundational layer for the next generation of Web3.0 dapps and games", "website": "https://darwinia.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Darwinia.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg" }, { "paraid": "2017", @@ -100,7 +102,7 @@ "token": "SGB", "description": "SubGame builds multiple applications through a complete technical architecture", "website": "https://www.subgame.org/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SubGame.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SubGame.svg" }, { "paraid": "2021", @@ -108,7 +110,7 @@ "token": "EFI", "description": "Built with Polkadot, Efinity will serve as the infrastructure for the decentralized, cross-chain Metaverse", "website": "https://enjin.io/products/efinity/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg" }, { "paraid": "2028", @@ -116,7 +118,7 @@ "token": "ARES", "description": "Ares protocol is the decentralized cross-chain oracle service protocol in the Polkadot ecosystem", "website": "https://www.aresprotocol.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Ares.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ares.svg" }, { "paraid": "2026", @@ -124,7 +126,7 @@ "token": "NODL", "description": "Nodle is a decentralized wireless network, harnessing the power of smartphones to provide a low-cost and secure IoT infrastructure for enterprises, device manufacturers, and smart cities", "website": "https://www.nodle.com/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", "rewardRate": 20 }, { @@ -133,7 +135,7 @@ "token": "CTO", "description": "Coinversation Protocol is a synthetic asset issuance protocol and decentralised contract trading exchange based on the Polkadot contract chain", "website": "https://www.coinversation.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Coinversation.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Coinversation.svg" }, { "paraid": "2032", @@ -141,7 +143,7 @@ "token": "INTR", "description": "Interlay is a decentralized network dedicated to connecting crypto-currencies like Bitcoin with DeFi platforms like Polkadot and Ethereum", "website": "https://interlay.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Interlay.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg" }, { "paraid": "2031", @@ -149,15 +151,15 @@ "token": "CFG", "description": "Centrifuge Chain is the gateway for real-world assets to the Blockchain Multiverse", "website": "https://centrifuge.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg" }, { - "paraid": "2019", + "paraid": "2052", "name": "Composable Finance", "token": "LAYR", "description": "Composableโ€™s parachain is going to be able to run multiple bytecodes together in the same place, in order to run smart contracts together in a manner that allows them to communicate and collaborate", "website": "https://www.composable.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Composable.png" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png" }, { "paraid": "2011", @@ -165,7 +167,7 @@ "token": "EQ", "description": "The functionality of all key DeFi apps on one platform, with advanced bailout mechanism for system security", "website": "https://equilibrium.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", "rewardRate": 200 }, { @@ -174,7 +176,7 @@ "token": "PHA", "description": "Trustless computation platform that enables massive cloud processing without sacrificing data confidentiality", "website": "https://phala.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", "rewardRate": 12 }, { @@ -183,7 +185,7 @@ "token": "HDX", "description": "HydraDX is an autonomous cross-chain liquidity protocol built on Substrate", "website": "https://hydradx.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg" }, { "paraid": "2040", @@ -191,7 +193,7 @@ "token": "PDEX", "description": "A decentralized, peer-peer, cryptocurrency exchange for DeFi ecosystem in Substrate", "website": "https://www.polkadex.trade/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Polkadex.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg" }, { "paraid": "2038", @@ -199,7 +201,7 @@ "token": "GEM", "description": "Geminis takes Ethereum chain support to the next level through WasmEdge.", "website": "https://geminis.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Geminis.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Geminis.svg" }, { "paraid": "2037", @@ -207,15 +209,15 @@ "token": "UNQ", "description": "Unique Network is a scalable blockchain for composable NFTs with advanced economies", "website": "https://unique.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Unique.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg" }, { "paraid": "2030", "name": "Bifrost Polkadot", "token": "BNC", - "description": "Bifrost is a DeFi protocol that connect with Polkadot and different PoS blockchains to provide staking derivative though XCMP or Smart Contract", + "description": "Bifrost is a DeFi protocol that connects with Polkadot and different PoS blockchains to provide staking derivative though XCMP or Smart Contract", "website": "https://bifrost.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg" }, { "paraid": "2043", @@ -223,7 +225,7 @@ "token": "OTP", "description": "OriginTrail is the worldโ€™s first Decentralized Knowledge Graph๏ธ", "website": "https://parachain.origintrail.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/OriginTrail.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg" }, { "paraid": "2007", @@ -231,7 +233,7 @@ "token": "KAPEX", "description": "Totem is building the world's first peer-to-peer accounting consensus protocol.", "website": "https://totemaccounting.com", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Totem.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg" }, { "paraid": "2039", @@ -239,7 +241,7 @@ "token": "TEER", "description": "Scalable solution for securely processing sensitive data", "website": "https://integritee.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Integritee_Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee_Polkadot.svg" }, { "paraid": "2053", @@ -247,6 +249,172 @@ "token": "SO", "description": "OmniBTC is an omnichain financial platform for web3, including omnichain swap and BTC omnichain lending", "website": "https://www.omnibtc.finance/#/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/OmniBTC.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OmniBTC.svg" + }, + { + "paraid": "2019", + "name": "Kylin", + "token": "KYL", + "description": "Kylin Network will provide valid, reliable, secure, cost-effective, and easily-coordinated data sources and data analytics", + "website": "https://kylin.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg" + }, + { + "paraid": "2056", + "name": "Aventus", + "token": "AVT", + "description": "Aventus is a scalable, sustainable and interoperable enterprise-grade blockchain that makes building on Polkadot, Ethereum and beyond accessible for companies in any ecosystem", + "website": "https://www.aventus.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg" + }, + { + "paraid": "2048", + "name": "Bitgreen", + "token": "BITG", + "description": "Bitgreen's green DeFi platform allows organizations and individual users to invest in sustainability markets, purchase high-quality tokenized carbon credits, and participate in sustainable finance", + "website": "https://bitgreen.org/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bitgreen.svg" + }, + { + "paraid": "2090", + "name": "OAK Network", + "token": "OAK", + "description": "Web 3.0 hub for Defi and payment automation", + "website": "https://oak.tech/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OAK.svg" + }, + { + "paraid": "2051", + "name": "Ajuna Network", + "token": "AJUN", + "description": "Ajuna Network makes the worldโ€™s leading game development engines โ€” Unity and Unreal โ€” fully integrated with the world of blockchain-based assets", + "website": "https://ajuna.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg" + }, + { + "paraid": "2093", + "name": "Hashed Network", + "token": "HASH", + "description": "Hashed Network enables the full lifecycle for digitally-native organizations and web3-curious businesses seeking benefits of decentralized digital economies", + "website": "https://hashed.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg" + }, + { + "paraid": "2094", + "name": "Pendulum", + "token": "PEN", + "description": "Pendulum is an open-source blockchain that aims to establish the missing link between the fiat and the DeFi ecosystems through a fiat-optimized smart contract blockchain. Pendulum is built with Substrate and will allow connecting DeFi applications to the foreign exchange market, building automated market makers (AMMs) to introduce scalable liquidity pools for fiat currencies, and create yield earning opportunities for fiat token holders", + "website": "https://pendulumchain.org/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "rewardRate": 11 + }, + { + "paraid": "3334", + "name": "Moonsama", + "token": "SAMA", + "description": "Moonsamaโ€™s mission is to unlock the potential of Non Fungible Tokens (NFTs) as true elements of utility in the Web3 space.", + "website": "https://moonsama.com/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonsama.svg" + }, + { + "paraid": "3338", + "name": "peaq", + "token": "PEAQ", + "description": "peaq is the decentralized Web3 network powering the Economy of Things, designed to solve some of our biggest societal and economic challenges, it ensures that the incentives of people and increasingly intelligent machines are aligned.", + "website": "https://www.peaq.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/peaq.svg", + "rewardRate": 140 + }, + { + "paraid": "3340", + "name": "InvArch", + "token": "VARCH", + "description": "InvArch is both an application-specific blockchain & a service parachain that empowers the Polkadot ecosystem. The network features a dynamic multisig solution (called Saturn) that services the entire Polkadot ecosystem.", + "website": "https://invarch.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg", + "rewardRate": 100 + }, + { + "paraid": "3336", + "name": "Acala", + "token": "ACA", + "description": "All-in-one DeFi hub of Polkadot", + "website": "https://acala.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "customFlow": "Acala" + }, + { + "paraid": "3345", + "name": "Energy Web X", + "token": "EWT", + "description": "Energy Web X is the next-generation platform helping enterprises unlock business value from clean and distributed energy. Real companies, real projects, real impact", + "website": "https://crowdloan.energywebx.com", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "rewardRate": 1 + }, + { + "paraid": "3354", + "name": "Logion", + "token": "LGNT", + "description": "Harness the full potential of tokenization with Logion, the groundbreaking blockchain infrastructure that protects the inherent token value", + "website": "https://logion.network/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Logion.svg", + "rewardRate": 80 + }, + { + "paraid": "3350", + "name": "Parallel", + "token": "PARA", + "description": "Parallel enables token holders and projects to flexibly and borderlessly put their idle capital to earn interests", + "website": "https://www.frequency.xyz/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg" + }, + { + "paraid": "3342", + "name": "Moonbeam", + "token": "GLMR", + "description": "Ethereum-compatible smart contract parachain on Polkadot", + "website": "https://moonbeam.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "customFlow": "Moonbeam", + "extras": { + "paraId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "apiLink": "yy9252r9jh.api.purestake.io", + "apiTokenName": "MOONBEAM_PROD_AUTH_TOKEN" + } + }, + { + "paraid": "3356", + "name": "Bifrost Polkadot", + "token": "BNC", + "description": "Bifrost is a DeFi protocol that connects with Polkadot and different PoS blockchains to provide staking derivative though XCMP or Smart Contract", + "website": "https://bifrost.finance/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg" + }, + { + "paraid": "3363", + "name": "Polkadex", + "token": "PDEX", + "description": "A decentralized, peer-peer, cryptocurrency exchange for DeFi ecosystem in Substrate", + "website": "https://polkadex.trade/crowdloans", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg" + }, + { + "paraid": "3367", + "name": "Hyperbridge", + "token": "NAND", + "description": "Hyperbridge is an interoperability coprocessor that has been designed with full node level security", + "website": "https://hyperbridge.network/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hyperbridge.svg", + "rewardRate": 100 + }, + { + "paraid": "3370", + "name": "LAOS Network", + "token": "LAOS", + "description": "LAOS is the first Layer 1 connected without bridges to Ethereum, Polygon and other major ecosystems, with the goal of becoming the protocol they use to offload more than 20% of all their transactions. Among other features, it allows the minting of unlimited assets on these chains without incurring native gas fees, eliminating the need for bridges or wrapped currency, while still being fully compatible with their DApps and marketplaces", + "website": "https://laosnetwork.io/waitlist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/LAOS.svg", + "rewardRate": 100 } ] diff --git a/crowdloan/polkadot.json b/crowdloan/polkadot.json index 094ada04c..5769ae4e6 100644 --- a/crowdloan/polkadot.json +++ b/crowdloan/polkadot.json @@ -5,9 +5,10 @@ "token": "ACA", "description": "All-in-one DeFi hub of Polkadot", "website": "https://acala.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Acala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", "rewardRate": 10, - "customFlow": "Acala" + "customFlow": "Acala", + "movedToParaId": "3336" }, { "paraid": "2004", @@ -15,13 +16,14 @@ "token": "GLMR", "description": "Ethereum-compatible smart contract parachain on Polkadot", "website": "https://moonbeam.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", "customFlow": "Moonbeam", "extras": { "paraId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", "apiLink": "yy9252r9jh.api.purestake.io", "apiTokenName": "MOONBEAM_PROD_AUTH_TOKEN" - } + }, + "movedToParaId": "3342" }, { "paraid": "2006", @@ -29,7 +31,7 @@ "token": "ASTR", "description": "Astar is the Polkadot-native dApp hub supporting Ethereum, WebAssembly, dApp Staking, and Layer2 solutions", "website": "https://astar.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Astar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Astar.svg", "customFlow": "Astar" }, { @@ -38,7 +40,7 @@ "token": "LIT", "description": "The Litentry Network provides privacy-first, decentralized identity aggregation computing services", "website": "https://www.litentry.com/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Litentry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Litentry.svg", "rewardRate": 2.5 }, { @@ -47,7 +49,7 @@ "token": "CLV", "description": "Clover is a substrate based smart contract platform built for Polkadot, with added support for Ethereum developers to participate in the Polkadot ecosystem", "website": "https://clover.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/CLV_Parachain.svg", "rewardRate": 4 }, { @@ -56,7 +58,7 @@ "token": "PARA", "description": "Parallel enables token holders and projects to flexibly and borderlessly put their idle capital to earn interests", "website": "https://parallel.fi/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Parallel.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg", "rewardRate": 25 }, { @@ -65,7 +67,7 @@ "token": "CRU", "description": "Crust implements the incentive layer protocol for decentralized storage", "website": "https://crust.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Crust.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Crust_Parachain.svg", "rewardRate": 0.2 }, { @@ -74,7 +76,7 @@ "token": "MANTA", "description": "Manta Network is focused on applying cutting-edge cryptographic constructions such as zkSNARKs to deliver end-to-end privacy guarantees for blockchain apps", "website": "https://manta.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Manta.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Manta.svg", "rewardRate": 50 }, { @@ -83,7 +85,7 @@ "token": "GOV", "description": "SubDAO Network is a Cross-chain Platform to link DAO and DApp on Polkadot", "website": "https://www.subdao.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SubDAO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SubDAO.svg", "rewardRate": 20 }, { @@ -92,7 +94,7 @@ "token": "RING", "description": "Darwinia is a trustless multi-chain bridge hub network designed to become the foundational layer for the next generation of Web3.0 dapps and games", "website": "https://darwinia.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Darwinia.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Darwinia.svg" }, { "paraid": "2017", @@ -100,7 +102,7 @@ "token": "SGB", "description": "SubGame builds multiple applications through a complete technical architecture", "website": "https://www.subgame.org/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/SubGame.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/SubGame.svg" }, { "paraid": "2021", @@ -108,7 +110,7 @@ "token": "EFI", "description": "Built with Polkadot, Efinity will serve as the infrastructure for the decentralized, cross-chain Metaverse", "website": "https://enjin.io/products/efinity/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Efinity.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Efinity.svg" }, { "paraid": "2028", @@ -116,7 +118,7 @@ "token": "ARES", "description": "Ares protocol is the decentralized cross-chain oracle service protocol in the Polkadot ecosystem", "website": "https://www.aresprotocol.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Ares.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ares.svg" }, { "paraid": "2026", @@ -124,7 +126,7 @@ "token": "NODL", "description": "Nodle is a decentralized wireless network, harnessing the power of smartphones to provide a low-cost and secure IoT infrastructure for enterprises, device manufacturers, and smart cities", "website": "https://www.nodle.com/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Nodle.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Nodle.svg", "rewardRate": 20 }, { @@ -133,7 +135,7 @@ "token": "CTO", "description": "Coinversation Protocol is a synthetic asset issuance protocol and decentralised contract trading exchange based on the Polkadot contract chain", "website": "https://www.coinversation.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Coinversation.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Coinversation.svg" }, { "paraid": "2032", @@ -141,7 +143,7 @@ "token": "INTR", "description": "Interlay is a decentralized network dedicated to connecting crypto-currencies like Bitcoin with DeFi platforms like Polkadot and Ethereum", "website": "https://interlay.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Interlay.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Interlay.svg" }, { "paraid": "2031", @@ -149,15 +151,15 @@ "token": "CFG", "description": "Centrifuge Chain is the gateway for real-world assets to the Blockchain Multiverse", "website": "https://centrifuge.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Centrifuge.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Centrifuge.svg" }, { - "paraid": "2019", + "paraid": "2052", "name": "Composable Finance", "token": "LAYR", "description": "Composableโ€™s parachain is going to be able to run multiple bytecodes together in the same place, in order to run smart contracts together in a manner that allows them to communicate and collaborate", "website": "https://www.composable.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Composable.png" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Composable.png" }, { "paraid": "2011", @@ -165,7 +167,7 @@ "token": "EQ", "description": "The functionality of all key DeFi apps on one platform, with advanced bailout mechanism for system security", "website": "https://equilibrium.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Equilibrium.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Equilibrium.svg", "rewardRate": 200 }, { @@ -174,7 +176,7 @@ "token": "PHA", "description": "Trustless computation platform that enables massive cloud processing without sacrificing data confidentiality", "website": "https://phala.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Phala.svg", "rewardRate": 12 }, { @@ -183,7 +185,7 @@ "token": "HDX", "description": "HydraDX is an autonomous cross-chain liquidity protocol built on Substrate", "website": "https://hydradx.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/HydraDX.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/HydraDX.svg" }, { "paraid": "2040", @@ -191,7 +193,7 @@ "token": "PDEX", "description": "A decentralized, peer-peer, cryptocurrency exchange for DeFi ecosystem in Substrate", "website": "https://www.polkadex.trade/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Polkadex.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg" }, { "paraid": "2038", @@ -199,7 +201,7 @@ "token": "GEM", "description": "Geminis takes Ethereum chain support to the next level through WasmEdge.", "website": "https://geminis.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Geminis.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Geminis.svg" }, { "paraid": "2037", @@ -207,15 +209,15 @@ "token": "UNQ", "description": "Unique Network is a scalable blockchain for composable NFTs with advanced economies", "website": "https://unique.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Unique.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Unique.svg" }, { "paraid": "2030", "name": "Bifrost Polkadot", "token": "BNC", - "description": "Bifrost is a DeFi protocol that connect with Polkadot and different PoS blockchains to provide staking derivative though XCMP or Smart Contract", + "description": "Bifrost is a DeFi protocol that connects with Polkadot and different PoS blockchains to provide staking derivative though XCMP or Smart Contract", "website": "https://bifrost.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg" }, { "paraid": "2043", @@ -223,7 +225,7 @@ "token": "OTP", "description": "OriginTrail is the worldโ€™s first Decentralized Knowledge Graph๏ธ", "website": "https://parachain.origintrail.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/OriginTrail.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OriginTrail.svg" }, { "paraid": "2007", @@ -231,7 +233,7 @@ "token": "KAPEX", "description": "Totem is building the world's first peer-to-peer accounting consensus protocol.", "website": "https://totemaccounting.com", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Totem.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Totem.svg" }, { "paraid": "2039", @@ -239,7 +241,7 @@ "token": "TEER", "description": "Scalable solution for securely processing sensitive data", "website": "https://integritee.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/Integritee_Polkadot.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Integritee_Polkadot.svg" }, { "paraid": "2053", @@ -247,6 +249,171 @@ "token": "SO", "description": "OmniBTC is an omnichain financial platform for web3, including omnichain swap and BTC omnichain lending", "website": "https://www.omnibtc.finance/#/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/gradient/OmniBTC.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OmniBTC.svg" + }, + { + "paraid": "2019", + "name": "Kylin", + "token": "KYL", + "description": "Kylin Network will provide valid, reliable, secure, cost-effective, and easily-coordinated data sources and data analytics", + "website": "https://kylin.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Kylin.svg" + }, + { + "paraid": "2056", + "name": "Aventus", + "token": "AVT", + "description": "Aventus is a scalable, sustainable and interoperable enterprise-grade blockchain that makes building on Polkadot, Ethereum and beyond accessible for companies in any ecosystem", + "website": "https://www.aventus.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Aventus.svg" + }, + { + "paraid": "2048", + "name": "Bitgreen", + "token": "BITG", + "description": "Bitgreen's green DeFi platform allows organizations and individual users to invest in sustainability markets, purchase high-quality tokenized carbon credits, and participate in sustainable finance", + "website": "https://bitgreen.org/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bitgreen.svg" + }, + { + "paraid": "2090", + "name": "OAK Network", + "token": "OAK", + "description": "Web 3.0 hub for Defi and payment automation", + "website": "https://oak.tech/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/OAK.svg" + }, + { + "paraid": "2051", + "name": "Ajuna Network", + "token": "AJUN", + "description": "Ajuna Network makes the worldโ€™s leading game development engines โ€” Unity and Unreal โ€” fully integrated with the world of blockchain-based assets", + "website": "https://ajuna.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Ajuna.svg" + }, + { + "paraid": "2093", + "name": "Hashed Network", + "token": "HASH", + "description": "Hashed Network enables the full lifecycle for digitally-native organizations and web3-curious businesses seeking benefits of decentralized digital economies", + "website": "https://hashed.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hashed.svg" + }, + { + "paraid": "2094", + "name": "Pendulum", + "token": "PEN", + "description": "Pendulum is an open-source blockchain that aims to establish the missing link between the fiat and the DeFi ecosystems through a fiat-optimized smart contract blockchain. Pendulum is built with Substrate and will allow connecting DeFi applications to the foreign exchange market, building automated market makers (AMMs) to introduce scalable liquidity pools for fiat currencies, and create yield earning opportunities for fiat token holders", + "website": "https://pendulumchain.org/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Pendulum.svg", + "rewardRate": 11 + }, + { + "paraid": "3340", + "name": "InvArch Network", + "token": "VARCH", + "description": "InvArch is a highly optimized network for launching decentralized communities, borderless businesses, & unstoppable organizations on Polkadot & beyond!", + "website": "https://invarch.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/InvArch.svg" + }, + { + "paraid": "3334", + "name": "Moonsama", + "token": "SAMA", + "description": "Moonsamaโ€™s mission is to unlock the potential of Non Fungible Tokens (NFTs) as true elements of utility in the Web3 space.", + "website": "https://moonsama.com/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonsama.svg" + }, + { + "paraid": "3338", + "name": "peaq", + "token": "PEAQ", + "description": "peaq is the decentralized Web3 network powering the Economy of Things, designed to solve some of our biggest societal and economic challenges, it ensures that the incentives of people and increasingly intelligent machines are aligned.", + "website": "https://www.peaq.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/peaq.svg", + "rewardRate": 140 + }, + { + "paraid": "3336", + "name": "Acala", + "token": "ACA", + "description": "All-in-one DeFi hub of Polkadot", + "website": "https://acala.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Acala.svg", + "customFlow": "Acala" + }, + { + "paraid": "3345", + "name": "Energy Web X", + "token": "EWT", + "description": "Energy Web X is the next-generation platform helping enterprises unlock business value from clean and distributed energy. Real companies, real projects, real impact", + "website": "https://crowdloan.energywebx.com", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Energy_Web.svg", + "rewardRate": 1 + }, + { + "paraid": "3354", + "name": "Logion", + "token": "LGNT", + "description": "Harness the full potential of tokenization with Logion, the groundbreaking blockchain infrastructure that protects the inherent token value", + "website": "https://logion.network/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Logion.svg", + "rewardRate": 80 + }, + { + "paraid": "3350", + "name": "Parallel", + "token": "PARA", + "description": "Parallel enables token holders and projects to flexibly and borderlessly put their idle capital to earn interests", + "website": "https://www.frequency.xyz/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Parallel.svg" + }, + { + "paraid": "3342", + "name": "Moonbeam", + "token": "GLMR", + "description": "Ethereum-compatible smart contract parachain on Polkadot", + "website": "https://moonbeam.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Moonbeam.svg", + "customFlow": "Moonbeam", + "extras": { + "paraId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "apiLink": "yy9252r9jh.api.purestake.io", + "apiTokenName": "MOONBEAM_PROD_AUTH_TOKEN" + } + }, + { + "paraid": "3356", + "name": "Bifrost Polkadot", + "token": "BNC", + "description": "Bifrost is a DeFi protocol that connects with Polkadot and different PoS blockchains to provide staking derivative though XCMP or Smart Contract", + "website": "https://bifrost.finance/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Bifrost_Polkadot.svg" + }, + { + "paraid": "3363", + "name": "Polkadex", + "token": "PDEX", + "description": "A decentralized, peer-peer, cryptocurrency exchange for DeFi ecosystem in Substrate", + "website": "https://polkadex.trade/crowdloans", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Polkadex.svg" + }, + { + "paraid": "3367", + "name": "Hyperbridge", + "token": "NAND", + "description": "Hyperbridge is an interoperability coprocessor that has been designed with full node level security", + "website": "https://hyperbridge.network/?ref=parachains-info", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/Hyperbridge.svg", + "rewardRate": 100 + }, + { + "paraid": "3370", + "name": "LAOS Network", + "token": "LAOS", + "description": "LAOS is the first Layer 1 connected without bridges to Ethereum, Polygon and other major ecosystems, with the goal of becoming the protocol they use to offload more than 20% of all their transactions. Among other features, it allows the minting of unlimited assets on these chains without incurring native gas fees, eliminating the need for bridges or wrapped currency, while still being fully compatible with their DApps and marketplaces", + "website": "https://laosnetwork.io/waitlist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/gradient/LAOS.svg", + "rewardRate": 100 } ] diff --git a/crowdloan/polkatrain.json b/crowdloan/polkatrain.json index ab8617204..e3126cf95 100644 --- a/crowdloan/polkatrain.json +++ b/crowdloan/polkatrain.json @@ -5,7 +5,7 @@ "token": "GLMR", "description": "Test moonbeam crowdloan", "website": "https://moonbeam.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "customFlow": "Moonbeam", "extras": { "paraId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", diff --git a/crowdloan/rococo.json b/crowdloan/rococo.json index b75b4fa85..3a0c48624 100644 --- a/crowdloan/rococo.json +++ b/crowdloan/rococo.json @@ -14,7 +14,7 @@ "token": "ACA", "description": "All-in-one DeFi hub of Polkadot", "website": "https://acala.network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Karura.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Karura.svg", "rewardRate": 12, "customFlow": "Acala" }, @@ -24,7 +24,7 @@ "token": "SDN", "description": "Shiden Network is a multi-chain decentralized application layer on Kusama", "website": "https://shiden.plasmnet.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Shiden.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Shiden.svg", "rewardRate": 25 }, { @@ -33,7 +33,7 @@ "token": "MOVR", "description": "Solidity Smart Contracts on Kusama", "website": "https://moonbeam.network/networks/moonriver/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Moonriver.svg", "rewardRate": 4.5 }, { @@ -42,7 +42,7 @@ "token": "XRT", "description": "Futuristic, secure, and server-less IoT platform on top of Ethereum && Polkadot", "website": "https://robonomics.network/kusama-slot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Robonomics.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Robonomics.svg", "rewardRate": 5 }, { @@ -51,7 +51,7 @@ "token": "KSX", "description": "Crypto Asset Gateway for Kusama Ecosystem", "website": "https://chainx-org.medium.com/chainx-kusama-parachain-sherpax-light-paper-5341ff855c9c", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/SherpaX.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/SherpaX.svg", "rewardRate": 12 }, { @@ -60,7 +60,7 @@ "token": "BNC", "description": "A parachain designed for staking's liquidity", "website": "https://bifrost.finance/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Bifrost.svg", "rewardRate": 12, "customFlow": "Bifrost" }, @@ -70,7 +70,7 @@ "token": "GENS", "description": "The boldest DeFi one-stop-shop and R&D hub", "website": "https://genshiro.equilibrium.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Genshiro.svg" + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Genshiro.svg" }, { "paraid": "9999", @@ -78,7 +78,7 @@ "token": "SUB", "description": "An open platform for decentralized social networks and marketplaces", "website": "https://subsocial.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Subsocial.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Subsocial.svg", "rewardRate": 12 }, { @@ -87,7 +87,7 @@ "token": "PHA", "description": "Transparent and Private Global Computation Cloud on Kusama", "website": "https://phala.network/khala/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Khala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/Khala.svg", "rewardRate": 100 }, { @@ -96,7 +96,7 @@ "token": "KILT", "description": "Credentials for Web 3.0", "website": "https://www.kilt.io/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/KILT%20Spiritnet.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/white/KILT%20Spiritnet.svg", "rewardRate": 100 } ] diff --git a/dapps/README.md b/dapps/README.md index 14f0c0077..1320f0225 100644 --- a/dapps/README.md +++ b/dapps/README.md @@ -1,49 +1,79 @@ # List of supported dapps -| DApp | Url | Tags | -| --------------------------------- | ---------------------------------------------------- | ----------------------- | -| Acala Rewards Claim | https://distribution.acala.network/claim/acala | crowdloans | -| ArthSwap | https://app.arthswap.org/#/swap | defi,staking,evm | -| Astar DApp Hub | https://portal.astar.network/ | defi,staking,evm | -| Beamswap | https://app.beamswap.io/exchange/swap | defi,staking,evm | -| Bifrost App | https://bifrost.app/ | defi,crowdloans | -| Bit.Country Pioneer Rewards Claim | https://ksmcrowdloan.bit.country/reward | crowdloans | -| Centrifuge Rewards Claim | https://centrifuge.io/parachain/crowdloan/ | crowdloans | -| Damned Pirates Society | https://damnedpiratessociety.io/ | nft,evm | -| DappRadar | https://dappradar.com/ | utilities | -| Dotmarketcap | https://dotmarketcap.com/ | utilities | -| Huckleberry Finance | https://www.huckleberry.finance/#/swap | defi,staking,evm | -| Impossible Finance | https://invest.impossible.finance/launchpad | defi,evm | -| Interlay Rewards Claim | https://crowdloan.interlay.io/ | crowdloans | -| Kanaria | https://kanaria.rmrk.app/ | nft | -| Kintsugi Hub | https://kintsugi.interlay.io/ | staking,defi,crowdloans | -| KodaDot | https://kodadot.xyz/ | nft | -| Kusama Lido | https://kusama.lido.fi/ | staking,evm | -| Litmus App | https://apps.litentry.com/ | crowdloans,evm | -| Moonbeam | https://apps.moonbeam.network/moonbeam | staking,crowdloans,evm | -| Moonriver | https://apps.moonbeam.network/moonriver | staking,crowdloans,evm | -| Moonsama | https://marketplace.moonsama.com/ | nft,evm | -| Moonwell Apollo | https://moonwell.fi/apollo/MOVR | defi,evm | -| Moonwell Artemis | https://moonwell.fi/artemis/GLMR | defi,evm | -| MyTrade | https://mytrade.org/ | defi,evm | -| Parallel Finance App | https://app.parallel.fi/ | defi | -| Parallel Rewards Claim | https://crowdloan.parallel.fi/#/auction/rewards/ | crowdloans | -| Phala App | https://app.phala.network/ | defi,staking | -| Polkadot Lido | https://polkadot.lido.fi/ | staking,evm | -| Polkadot Staking Dashboard | https://staking.polkadot.network/dashboard#/overview | staking | -| Polkadot.js | https://polkadot.js.org/apps/# | utilities | -| Polkassembly | https://polkadot.polkassembly.io/ | community | -| Polkawatch | https://polkawatch.app/ | staking | -| Singular | https://singular.rmrk.app/ | nft | -| Singular 2.0 | https://singular.app/ | nft | -| Skybreach | https://skybreach.app/ | nft,evm | -| Solarbeam | https://app.solarbeam.io/exchange/swap | defi,staking,evm | -| Solarflare | https://app.solarflare.io/exchange/swap | defi,staking,evm | -| Stellaswap | https://app.stellaswap.com/exchange/swap | defi,staking,evm | -| Sub.ID | https://sub.id/#/ | utilities | -| SubBridge | https://subbridge.io/ | defi,evm | -| Subsocial App | https://app.subsocial.network/ | community | -| Subsquare. Khala network | https://khala.subsquare.io/ | community | -| Talisman App | https://app.talisman.xyz/portfolio | defi,crowdloans | -| TofuNFT | https://tofunft.com/ | nft,evm | -| cBRIDGE | https://cbridge.celer.network/#/transfer | defi,evm | +| -- | DApp | Url | Tags | +| --: | ------------------------------------ | ---------------------------------------------------- | ----------------------------- | +| 1 | ACE | https://ace.web3go.xyz/#/ | utilities | +| 2 | AZERO.ID | https://azero.id/ | utilities | +| 3 | Acala App (Desktop mode) | https://apps.acala.network/ | bridge,dex,staking | +| 4 | ArthSwap | https://app.arthswap.org/#/swap | dex,staking,evm | +| 5 | Astar Portal | https://portal.astar.network/ | bridge,staking,evm | +| 6 | Awesome Ajuna Avatars (Desktop mode) | https://aaa.ajuna.io/ | nft,gaming | +| 7 | Basilisk Snek Swap | https://app.basilisk.cloud/#/trade | bridge,dex | +| 8 | Beamswap | https://app.beamswap.io/exchange/braindex | bridge,dex,staking,evm | +| 9 | Bifrost App | https://bifrost.app/ | bridge,crowdloans,dex,staking | +| 10 | Bit.Country Pioneer Metaverse | https://pioneer.bit.country/ | nft,staking,gaming | +| 11 | DED Mine | https://ded.games/play/dedmine | gaming,nft | +| 12 | Damned Pirates Society | https://damnedpiratessociety.io/ | nft,evm,gaming | +| 13 | DappRadar | https://dappradar.com/ | social | +| 14 | Darwinia App | https://apps.darwinia.network/ | staking | +| 15 | Dotmarketcap | https://dotmarketcap.com/ | social | +| 16 | Downtown Moonbeam | https://dtmb.xyz | evm,social | +| 17 | EVRLOOT | https://game.evrloot.com/game | nft,gaming | +| 18 | Evolution Land. Columbus | https://portal.evolution.land/land/3/market/land | nft,evm,gaming | +| 19 | GIANTProtocol | https://app.giantprotocol.org/shop | utilities | +| 20 | GM! Say it back | https://app.gmordie.com/ | social | +| 21 | Gleev | https://gleev.xyz/ | social | +| 22 | Grill | https://grillapp.net | social | +| 23 | Huckleberry Finance | https://www.huckleberry.finance/#/swap | bridge,dex,staking,evm | +| 24 | HydraDX Omnipool | https://hydradx.io/NOVA | bridge,dex | +| 25 | Impossible Finance | https://app.impossible.finance/explore | dex,evm | +| 26 | Interlay Bitcoin DeFi Hub | https://app.interlay.io/ | bridge,staking,dex | +| 27 | InvArch Dashboard | https://portal.invarch.network/ | crowdloans,governance | +| 28 | Joystream Governance App | https://pioneerapp.xyz/ | governance | +| 29 | KILT Stakeboard (Desktop mode) | https://stakeboard.kilt.io/ | staking | +| 30 | Kanaria | https://kanaria.rmrk.app/ | nft | +| 31 | Karura App (Desktop mode) | https://apps.karura.network/ | bridge,dex,staking | +| 32 | Kintsugi Hub | https://kintsugi.interlay.io/ | bridge,staking,crowdloans | +| 33 | KodaDot | https://kodadot.xyz/ | nft | +| 34 | Kusama Lido | https://kusama.lido.fi/ | staking,evm | +| 35 | Litentry App | https://apps.litentry.com/ | bridge,evm | +| 36 | MULTIX | https://multix.chainsafe.io/ | utilities | +| 37 | Mangata X (Desktop mode) | https://app.mangata.finance/ | bridge | +| 38 | Moonbeam | https://apps.moonbeam.network/moonbeam | bridge,staking,crowdloans,evm | +| 39 | Moonriver | https://apps.moonbeam.network/moonriver | bridge,staking,crowdloans,evm | +| 40 | Moonsama | https://marketplace.moonsama.com/ | nft,evm | +| 41 | Moonwell | https://moonwell.fi/discover | bridge,staking,evm | +| 42 | MyTrade | https://mytrade.org/ | dex,staking,evm | +| 43 | Omni Liquid Staking | https://omni.ls/ | bridge,staking | +| 44 | PABLO | https://app.pablo.finance/ | dex | +| 45 | Parallel Finance App | https://app.parallel.fi/ | bridge,dex | +| 46 | Pendulum Chain Portal | https://portal.pendulumchain.org/pendulum/dashboard | utilities,staking | +| 47 | Phala App | https://app.phala.network/ | staking | +| 48 | Polkadex Orderbook | https://orderbook.polkadex.trade/ | dex,utilities | +| 49 | Polkadot Lido | https://polkadot.lido.fi/ | staking,evm | +| 50 | Polkadot Staking Dashboard | https://staking.polkadot.network/dashboard#/overview | staking,utilities | +| 51 | Polkadot.js | https://polkadot.js.org/apps/# | utilities | +| 52 | Polkassembly | https://polkadot.polkassembly.io/ | governance | +| 53 | Polkawatch | https://polkawatch.app/ | staking | +| 54 | Proof of Chaos | https://proofofchaos.app | nft,governance | +| 55 | Raresama | https://raresama.com/ | nft | +| 56 | Robonomics | https://dapp.robonomics.network/#/ | utilities | +| 57 | Secret Stash | https://secret-stash.io/ | nft,utilities | +| 58 | Singular | https://singular.rmrk.app/ | nft | +| 59 | Singular 2.0 | https://singular.app/ | nft | +| 60 | Skybreach | https://skybreach.app/ | nft,evm,gaming | +| 61 | Solarbeam | https://app.solarbeam.io/exchange/swap | bridge,dex,staking,evm | +| 62 | Solarflare | https://app.solarflare.io/exchange/swap | bridge,dex,staking,evm | +| 63 | Stellaswap | https://app.stellaswap.com/exchange/swap | bridge,dex,staking,evm | +| 64 | Sub.ID | https://sub.id/#/ | utilities | +| 65 | SubBridge | https://subbridge.io/ | bridge,evm | +| 66 | Subsquare | https://polkadot.subsquare.io/ | governance | +| 67 | Talisman Portal | https://app.talisman.xyz/portfolio | crowdloans,nft | +| 68 | Tensor Wallet | https://tensorwallet.ca/ | utilities,staking | +| 69 | Ternoa HUB | https://hub.ternoa.network/ | staking | +| 70 | Tinkernet Dashboard | https://www.tinker.network/overview | staking,bridge,crowdloans | +| 71 | TofuNFT | https://tofunft.com/ | nft,evm | +| 72 | Zeitgeist | https://app.zeitgeist.pm/ | utilities | +| 73 | Zenlink | https://app.zenlink.pro | dex,staking | +| 74 | cBRIDGE | https://cbridge.celer.network/#/transfer | dex,evm,nft | +| 75 | xx network Hub | https://hub.xx.network | social,staking,utilities | diff --git a/dapps/dapps.json b/dapps/dapps.json index df4e06eaa..fd9cd7b83 100644 --- a/dapps/dapps.json +++ b/dapps/dapps.json @@ -1,183 +1,128 @@ { "categories": [ { - "name": "DeFi", - "id": "defi" + "name": "Bridge", + "id": "bridge" }, { - "name": "NFT", - "id": "nft" + "name": "Crowdloans", + "id": "crowdloans" + }, + { + "name": "DEX", + "id": "dex" }, { "name": "EVM", "id": "evm" }, { - "name": "Community", - "id": "community" + "name": "Gaming", + "id": "gaming" }, { - "name": "Utilities", - "id": "utilities" + "name": "Governance", + "id": "governance" }, { - "name": "Crowdloans", - "id": "crowdloans" + "name": "Social", + "id": "social" }, { "name": "Staking", "id": "staking" + }, + { + "name": "Utilities", + "id": "utilities" } ], "dapps": [ - { - "name": "Singular 2.0", - "url": "https://singular.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Singular_2.0.svg", - "categories": [ - "nft" - ] - }, - { - "name": "Singular", - "url": "https://singular.rmrk.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Singular.svg", - "categories": [ - "nft" - ] - }, - { - "name": "Kanaria", - "url": "https://kanaria.rmrk.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Kanaria.svg", - "categories": [ - "nft" - ] - }, { "name": "Bifrost App", "url": "https://bifrost.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Bifrost.svg", "categories": [ - "defi", - "crowdloans" + "bridge", + "crowdloans", + "dex", + "staking" ] }, { - "name": "Astar DApp Hub", + "name": "Astar Portal", "url": "https://portal.astar.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Astar.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Astar.png", "categories": [ - "defi", + "bridge", "staking", "evm" ] }, { - "name": "Subsocial App", - "url": "https://app.subsocial.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Subsocial.png", + "name": "Grill", + "url": "https://grillapp.net", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Grill.svg", "categories": [ - "community" + "social" ] }, { "name": "Sub.ID", "url": "https://sub.id/#/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Sub.ID.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Sub.ID.png", "categories": [ "utilities" ] }, { "name": "Polkadot.js", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Polkadot.js.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkadot.js.svg", "url": "https://polkadot.js.org/apps/#", "categories": [ "utilities" ] }, - { - "name": "KodaDot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/KodaDot.png", - "url": "https://kodadot.xyz/", - "categories": [ - "nft" - ] - }, { "name": "Dotmarketcap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Dotmarketcap.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Dotmarketcap.svg", "url": "https://dotmarketcap.com/", "categories": [ - "utilities" + "social" ] }, { "name": "Polkassembly", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", "url": "https://polkadot.polkassembly.io/", "categories": [ - "community" + "governance" ] }, { - "name": "Talisman App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Talisman.svg", + "name": "Talisman Portal", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Talisman.svg", "url": "https://app.talisman.xyz/portfolio", - "categories": [ - "defi", - "crowdloans" - ] - }, - { - "name": "Phala App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Phala.svg", - "url": "https://app.phala.network/", - "categories": [ - "defi", - "staking" - ] - }, - { - "name": "Bit.Country Pioneer Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", - "url": "https://ksmcrowdloan.bit.country/reward", - "categories": [ - "crowdloans" - ] - }, - { - "name": "Parallel Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Parallel-Heiko.svg", - "url": "https://crowdloan.parallel.fi/#/auction/rewards/", "categories": [ "crowdloans" ] }, { "name": "Kintsugi Hub", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Kintsugi.svg", "url": "https://kintsugi.interlay.io/", "categories": [ + "bridge", "staking", - "defi", - "crowdloans" - ] - }, - { - "name": "Acala Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Acala.png", - "url": "https://distribution.acala.network/claim/acala", - "categories": [ "crowdloans" ] }, { "name": "Moonbeam", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonbeam.svg", "url": "https://apps.moonbeam.network/moonbeam", "categories": [ + "bridge", "staking", "crowdloans", "evm" @@ -185,9 +130,10 @@ }, { "name": "Moonriver", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonriver.svg", "url": "https://apps.moonbeam.network/moonriver", "categories": [ + "bridge", "staking", "crowdloans", "evm" @@ -195,124 +141,106 @@ }, { "name": "Solarflare", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Solarflare.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Solarflare.png", "url": "https://app.solarflare.io/exchange/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Solarbeam", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Solarbeam.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Solarbeam.png", "url": "https://app.solarbeam.io/exchange/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Beamswap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Beamswap.svg", - "url": "https://app.beamswap.io/exchange/swap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Beamswap.svg", + "url": "https://app.beamswap.io/exchange/braindex", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Stellaswap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/StellaSwap.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/StellaSwap.svg", "url": "https://app.stellaswap.com/exchange/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Impossible Finance", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/ImpossibleFinance.svg", - "url": "https://invest.impossible.finance/launchpad", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ImpossibleFinance.svg", + "url": "https://app.impossible.finance/explore", "categories": [ - "defi", + "dex", "evm" ] }, { "name": "Huckleberry Finance", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Huckleberry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Huckleberry.svg", "url": "https://www.huckleberry.finance/#/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "MyTrade", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/MyTrade.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/MyTrade.svg", "url": "https://mytrade.org/", "categories": [ - "defi", + "dex", + "staking", "evm" ] }, - { - "name": "Centrifuge Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", - "url": "https://centrifuge.io/parachain/crowdloan/", - "categories": [ - "crowdloans" - ] - }, - { - "name": "Interlay Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", - "url": "https://crowdloan.interlay.io/", - "categories": [ - "crowdloans" - ] - }, { "name": "Parallel Finance App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Parallel-Heiko.svg", "url": "https://app.parallel.fi/", "categories": [ - "defi" + "bridge", + "dex" ] }, { "name": "DappRadar", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/DappRadar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DappRadar.svg", "url": "https://dappradar.com/", "categories": [ - "utilities" - ] - }, - { - "name": "TofuNFT", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/TofuNFT.svg", - "url": "https://tofunft.com/", - "categories": [ - "nft", - "evm" + "social" ] }, { - "name": "Subsquare. Khala network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/SubSquare.svg", - "url": "https://khala.subsquare.io/", + "name": "Subsquare", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "url": "https://polkadot.subsquare.io/", "categories": [ - "community" + "governance" ] }, { "name": "Kusama Lido", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/LIDO_KSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/LIDO_KSM.svg", "url": "https://kusama.lido.fi/", "categories": [ "staking", @@ -321,7 +249,7 @@ }, { "name": "Polkadot Lido", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/LIDO_DOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/LIDO_DOT.svg", "url": "https://polkadot.lido.fi/", "categories": [ "staking", @@ -330,100 +258,312 @@ }, { "name": "ArthSwap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/ArthSwap.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ArthSwap.svg", "url": "https://app.arthswap.org/#/swap", "categories": [ - "defi", + "dex", "staking", "evm" ] }, { - "name": "cBRIDGE", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/cBRIDGE.png", - "url": "https://cbridge.celer.network/#/transfer", + "name": "Moonwell", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonwell.svg", + "url": "https://moonwell.fi/discover", "categories": [ - "defi", + "bridge", + "staking", "evm" ] }, { - "name": "Moonwell Apollo", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonwell.svg", - "url": "https://moonwell.fi/apollo/MOVR", + "name": "SubBridge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/SubBridge.svg", + "url": "https://subbridge.io/", "categories": [ - "defi", + "bridge", "evm" ] }, { - "name": "Litmus App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Litmus-original.svg", + "name": "Polkawatch", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkawatch.svg", + "url": "https://polkawatch.app/", + "categories": [ + "staking" + ] + }, + { + "name": "Polkadot Staking Dashboard", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/StakingDashboard.svg", + "url": "https://staking.polkadot.network/dashboard#/overview", + "categories": [ + "staking", + "utilities" + ] + }, + { + "name": "Downtown Moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DowntownMoonbeam.png", + "url": "https://dtmb.xyz", + "categories": [ + "evm", + "social" + ] + }, + { + "name": "Darwinia App", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Darwinia.svg", + "url": "https://apps.darwinia.network/", + "categories": [ + "staking" + ] + }, + { + "name": "Basilisk Snek Swap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/SnekSwap.svg", + "url": "https://app.basilisk.cloud/#/trade", + "categories": [ + "bridge", + "dex" + ] + }, + { + "name": "GM! Say it back", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/GM.svg", + "url": "https://app.gmordie.com/", + "categories": [ + "social" + ] + }, + { + "name": "Tinkernet Dashboard", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Tinkernet.svg", + "url": "https://www.tinker.network/overview", + "categories": [ + "staking", + "bridge", + "crowdloans" + ] + }, + { + "name": "Zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Zeitgeist.svg", + "url": "https://app.zeitgeist.pm/", + "categories": [ + "utilities" + ] + }, + { + "name": "ACE", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ACE.svg", + "url": "https://ace.web3go.xyz/#/", + "categories": [ + "utilities" + ] + }, + { + "name": "Polkadex Orderbook", + "url": "https://orderbook.polkadex.trade/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkadex.svg", + "categories": [ + "dex", + "utilities" + ] + }, + { + "name": "Interlay Bitcoin DeFi Hub", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Interlay.svg", + "url": "https://app.interlay.io/", + "categories": [ + "bridge", + "staking", + "dex" + ] + }, + { + "name": "xx network Hub", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/xx.svg", + "url": "https://hub.xx.network", + "categories": [ + "social", + "staking", + "utilities" + ] + }, + { + "name": "Litentry App", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Litentry.svg", "url": "https://apps.litentry.com/", "categories": [ - "crowdloans", + "bridge", "evm" ] }, { - "name": "SubBridge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/SubBridge.svg", - "url": "https://subbridge.io/", + "name": "HydraDX Omnipool", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Hydradx.svg", + "url": "https://hydradx.io/NOVA", "categories": [ - "defi", - "evm" + "bridge", + "dex" ] }, { - "name": "Moonwell Artemis", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/MoonwellArtemis.svg", - "url": "https://moonwell.fi/artemis/GLMR", + "name": "PABLO", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Pablo.svg", + "url": "https://app.pablo.finance/", "categories": [ - "defi", - "evm" + "dex" ] }, { - "name": "Skybreach", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Skybreach.png", - "url": "https://skybreach.app/", + "name": "Karura App (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Karura.svg", + "url": "https://apps.karura.network/", "categories": [ - "nft", - "evm" + "bridge", + "dex", + "staking" + ], + "desktopOnly": true + }, + { + "name": "Acala App (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Acala.png", + "url": "https://apps.acala.network/", + "categories": [ + "bridge", + "dex", + "staking" + ], + "desktopOnly": true + }, + { + "name": "Mangata X (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/MangataX.svg", + "url": "https://app.mangata.finance/", + "categories": [ + "bridge" + ], + "desktopOnly": true + }, + { + "name": "Zenlink", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Zenlink.svg", + "url": "https://app.zenlink.pro", + "categories": [ + "dex", + "staking" ] }, { - "name": "Polkawatch", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Polkawatch.svg", - "url": "https://polkawatch.app/", + "name": "KILT Stakeboard (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/KILT.svg", + "url": "https://stakeboard.kilt.io/", "categories": [ "staking" + ], + "desktopOnly": true + }, + { + "name": "GIANTProtocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Giant.svg", + "url": "https://app.giantprotocol.org/shop", + "categories": [ + "utilities" ] }, { - "name": "Damned Pirates Society", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Damnedpiratessociety.svg", - "url": "https://damnedpiratessociety.io/", + "name": "Pendulum Chain Portal", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg", + "url": "https://portal.pendulumchain.org/pendulum/dashboard", "categories": [ - "nft", - "evm" + "utilities", + "staking" ] }, { - "name": "Polkadot Staking Dashboard", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/StakingDashboard.svg", - "url": "https://staking.polkadot.network/dashboard#/overview", + "name": "Robonomics", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Robonomics.svg", + "url": "https://dapp.robonomics.network/#/", "categories": [ + "utilities" + ] + }, + { + "name": "Tensor Wallet", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/TensorWallet.svg", + "url": "https://tensorwallet.ca/", + "categories": [ + "utilities", "staking" ] }, { - "name": "Moonsama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonsama.svg", - "url": "https://marketplace.moonsama.com/", + "name": "AZERO.ID", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/AzeroID.svg", + "url": "https://azero.id/", "categories": [ - "nft", - "evm" + "utilities" + ] + }, + { + "name": "Omni Liquid Staking", + "url": "https://omni.ls/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/OmniLS.svg", + "categories": [ + "bridge", + "staking" + ] + }, + { + "name": "MULTIX", + "url": "https://multix.chainsafe.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Multix.svg", + "categories": [ + "utilities" + ] + }, + { + "name": "Joystream Governance App", + "url": "https://pioneerapp.xyz/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Pioneer.svg", + "categories": [ + "governance" + ] + }, + { + "name": "Gleev", + "url": "https://gleev.xyz/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/gleev.svg", + "categories": [ + "social" + ] + }, + { + "name": "InvArch Dashboard", + "url": "https://portal.invarch.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/InvArch.svg", + "categories": [ + "crowdloans", + "governance" + ] + }, + { + "name": "Ternoa HUB", + "url": "https://hub.ternoa.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Ternoa.png", + "categories": [ + "staking" + ] + }, + { + "name": "DED Mine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DED.svg", + "url": "https://ded.games/play/dedmine/", + "categories": [ + "gaming" ] } ] diff --git a/dapps/dapps_dev.json b/dapps/dapps_dev.json index 22791aae5..fe7974414 100644 --- a/dapps/dapps_dev.json +++ b/dapps/dapps_dev.json @@ -1,33 +1,45 @@ { "categories": [ { - "name": "DeFi", - "id": "defi" + "name": "Bridge", + "id": "bridge" }, { - "name": "NFT", - "id": "nft" + "name": "Crowdloans", + "id": "crowdloans" + }, + { + "name": "DEX", + "id": "dex" }, { "name": "EVM", "id": "evm" }, { - "name": "Community", - "id": "community" + "name": "Gaming", + "id": "gaming" }, { - "name": "Utilities", - "id": "utilities" + "name": "Governance", + "id": "governance" }, { - "name": "Crowdloans", - "id": "crowdloans" + "name": "NFT", + "id": "nft" + }, + { + "name": "Social", + "id": "social" }, { "name": "Staking", "id": "staking" }, + { + "name": "Utilities", + "id": "utilities" + }, { "name": "Test", "id": "test" @@ -35,17 +47,17 @@ ], "dapps": [ { - "name": "Singular 2.0", - "url": "https://singular.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Singular_2.0.svg", + "name": "dotappstore", + "url": "https://dotappstore.com/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/ece2fff5cd559119395642f7f0aea6cd4d333af7/icons/dapps/color/dotappstore.svg", "categories": [ - "nft" + "utilities" ] }, { "name": "Singular", - "url": "https://singular.rmrk.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Singular.svg", + "url": "https://singular.app/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Singular_2.0.svg", "categories": [ "nft" ] @@ -53,7 +65,7 @@ { "name": "Kanaria", "url": "https://kanaria.rmrk.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Kanaria.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Kanaria.svg", "categories": [ "nft" ] @@ -61,41 +73,43 @@ { "name": "Bifrost App", "url": "https://bifrost.app/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Bifrost.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Bifrost.svg", "categories": [ - "defi", - "crowdloans" + "bridge", + "crowdloans", + "dex", + "staking" ] }, { - "name": "Astar DApp Hub", + "name": "Astar Portal", "url": "https://portal.astar.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Astar.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Astar.png", "categories": [ - "defi", + "bridge", "staking", "evm" ] }, { - "name": "Subsocial App", - "url": "https://app.subsocial.network/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Subsocial.png", + "name": "Grill", + "url": "https://grillapp.net", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Grill.svg", "categories": [ - "community" + "social" ] }, { "name": "Sub.ID", "url": "https://sub.id/#/", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Sub.ID.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Sub.ID.png", "categories": [ "utilities" ] }, { "name": "Polkadot.js", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Polkadot.js.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkadot.js.svg", "url": "https://polkadot.js.org/apps/#", "categories": [ "utilities" @@ -103,7 +117,7 @@ }, { "name": "KodaDot", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/KodaDot.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/KodaDot.svg", "url": "https://kodadot.xyz/", "categories": [ "nft" @@ -111,135 +125,98 @@ }, { "name": "Dotmarketcap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Dotmarketcap.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Dotmarketcap.svg", "url": "https://dotmarketcap.com/", "categories": [ - "utilities" + "social" ] }, { "name": "Parallel Finance App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Parallel-Heiko.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Parallel-Heiko.svg", "url": "https://app.parallel.fi/", "categories": [ - "defi" + "bridge", + "dex" ] }, { "name": "Polkassembly", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", "url": "https://polkadot.polkassembly.io/", "categories": [ - "community" + "governance" ] }, { - "name": "Talisman App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Talisman.svg", + "name": "Talisman Portal", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Talisman.svg", "url": "https://app.talisman.xyz/portfolio", "categories": [ - "defi", - "crowdloans" + "crowdloans", + "nft" ] }, { "name": "Phala App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Phala.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Phala.svg", "url": "https://app.phala.network/", "categories": [ - "defi", "staking" ] }, - { - "name": "Bit.Country Pioneer Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Bit.Country.svg", - "url": "https://ksmcrowdloan.bit.country/reward", - "categories": [ - "crowdloans" - ] - }, - { - "name": "Parallel Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Parallel-Heiko.svg", - "url": "https://crowdloan.parallel.fi/", - "categories": [ - "crowdloans" - ] - }, { "name": "Kintsugi Hub", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Kintsugi.svg", "url": "https://kintsugi.interlay.io/", "categories": [ + "bridge", "staking", - "defi", - "crowdloans" - ] - }, - { - "name": "Altair Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Altair.svg", - "url": "https://centrifuge.io/altair/crowdloan/", - "categories": [ - "crowdloans" - ] - }, - { - "name": "Clover Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Clover.svg", - "url": "https://lucky.clover.finance/", - "categories": [ "crowdloans" ] }, { - "name": "Karura App (not mobile-friendly yet)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Karura.svg", + "name": "Karura App (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Karura.svg", "url": "https://apps.karura.network/", "categories": [ - "defi", - "staking", - "community" - ] + "bridge", + "dex", + "staking" + ], + "desktopOnly": true }, { - "name": "KILT Stakeboard (not mobile-friendly yet)", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/KILT.svg", + "name": "KILT Stakeboard (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/KILT.svg", "url": "https://stakeboard.kilt.io/", "categories": [ "staking" - ] + ], + "desktopOnly": true }, { - "name": "Subsquare. Khala network", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/SubSquare.svg", - "url": "https://khala.subsquare.io/", + "name": "Subsquare", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "url": "https://polkadot.subsquare.io/", "categories": [ - "community" - ] - }, - { - "name": "Acala Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Acala.png", - "url": "https://distribution.acala.network/claim/acala", - "categories": [ - "crowdloans" + "governance" ] }, { "name": "Robonomics", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Robonomics.svg", - "url": "https://dapp.robonomics.network/#/staking/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Robonomics.svg", + "url": "https://dapp.robonomics.network/#/", "categories": [ - "staking" + "utilities" ] }, { "name": "Moonbeam", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonbeam.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonbeam.svg", "url": "https://apps.moonbeam.network/moonbeam", "categories": [ + "bridge", "staking", "crowdloans", "evm" @@ -247,9 +224,10 @@ }, { "name": "Moonriver", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonriver.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonriver.svg", "url": "https://apps.moonbeam.network/moonriver", "categories": [ + "bridge", "staking", "crowdloans", "evm" @@ -257,75 +235,81 @@ }, { "name": "Solarflare", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Solarflare.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Solarflare.png", "url": "https://app.solarflare.io/exchange/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Solarbeam", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Solarbeam.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Solarbeam.png", "url": "https://app.solarbeam.io/exchange/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Beamswap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Beamswap.svg", - "url": "https://app.beamswap.io/exchange/swap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Beamswap.svg", + "url": "https://app.beamswap.io/exchange/braindex", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Stellaswap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/StellaSwap.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/StellaSwap.svg", "url": "https://app.stellaswap.com/exchange/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "Impossible Finance", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/ImpossibleFinance.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ImpossibleFinance.svg", "url": "https://app.impossible.finance/explore", "categories": [ - "defi", + "dex", "evm" ] }, { "name": "Huckleberry Finance", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Huckleberry.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Huckleberry.svg", "url": "https://www.huckleberry.finance/#/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { "name": "MyTrade", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/MyTrade.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/MyTrade.svg", "url": "https://mytrade.org/", "categories": [ - "defi", + "dex", + "staking", "evm" ] }, { "name": "Kintsugi TESTNET", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Kintsugi.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Kintsugi.svg", "url": "https://bridge.interlay.io/bridge?tab=issue", "categories": [ "test" @@ -333,106 +317,93 @@ }, { "name": "Singular", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Singular_2.0.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Singular_2.0.svg", "url": "https://singular-rmrk2-dev.vercel.app/", "categories": [ "test" ] }, - { - "name": "Centrifuge Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Centrifuge.svg", - "url": "https://centrifuge.io/parachain/crowdloan/", - "categories": [ - "crowdloans" - ] - }, { "name": "DappRadar", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/DappRadar.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DappRadar.svg", "url": "https://dappradar.com/", "categories": [ - "utilities" + "social" ] }, { "name": "PolkaEx", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/PolkaEx.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/PolkaEx.svg", "url": "https://app.polkaex.io/swap", "categories": [ - "defi", + "bridge", + "dex", "staking", "evm" ] }, { - "name": "TofuNFT", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/TofuNFT.svg", - "url": "https://tofunft.com/", + "name": "Tinkernet Dashboard", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Tinkernet.svg", + "url": "https://www.tinker.network/overview", "categories": [ - "nft", - "evm" + "staking", + "bridge", + "crowdloans" ] }, { - "name": "1Beam", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/1beam.png", - "url": "https://1beam.io/", + "name": "TofuNFT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/TofuNFT.svg", + "url": "https://tofunft.com/", "categories": [ - "defi", - "staking", + "nft", "evm" ] }, { "name": "ArthSwap", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/ArthSwap.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ArthSwap.svg", "url": "https://app.arthswap.org/#/swap", "categories": [ - "defi", + "dex", "staking", "evm" ] }, { "name": "cBRIDGE", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/cBRIDGE.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/cBRIDGE.png", "url": "https://cbridge.celer.network/#/transfer", "categories": [ - "defi", - "evm" + "dex", + "evm", + "nft" ] }, { "name": "XDAO", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/XDAO.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/XDAO.svg", "url": "https://www.xdao.app/137", "categories": [ - "defi", + "bridge", + "dex", "evm" ] }, { "name": "SiriusFinance", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/SiriusFinance.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/SiriusFinance.svg", "url": "https://app.sirius.finance/#/swap", "categories": [ - "defi", + "dex", "staking", "evm" ] }, - { - "name": "Interlay Rewards Claim", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Interlay.svg", - "url": "https://crowdloan.interlay.io/", - "categories": [ - "crowdloans" - ] - }, { "name": "Kusama Lido", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/LIDO_KSM.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/LIDO_KSM.svg", "url": "https://kusama.lido.fi/", "categories": [ "staking", @@ -441,7 +412,7 @@ }, { "name": "Polkadot Lido", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/LIDO_DOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/LIDO_DOT.svg", "url": "https://polkadot.lido.fi/", "categories": [ "staking", @@ -449,62 +420,45 @@ ] }, { - "name": "Moonwell Apollo", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonwell.svg", - "url": "https://moonwell.fi/apollo/MOVR", + "name": "Moonwell", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonwell.svg", + "url": "https://moonwell.fi/discover", "categories": [ - "defi", - "evm" - ] - }, - { - "name": "Litmus App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/color/Litmus-original.svg", - "url": "https://apps.litentry.com/", - "categories": [ - "crowdloans", + "bridge", + "staking", "evm" ] }, { "name": "Darwinia App", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/chains/white/Darwinia.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Darwinia.svg", "url": "https://apps.darwinia.network/", "categories": [ - "staking", - "test" + "staking" ] }, { "name": "SubBridge", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/SubBridge.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/SubBridge.svg", "url": "https://subbridge.io/", "categories": [ - "defi", - "evm" - ] - }, - { - "name": "Moonwell Artemis", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/MoonwellArtemis.svg", - "url": "https://moonwell.fi/artemis/GLMR", - "categories": [ - "defi", + "bridge", "evm" ] }, { "name": "Skybreach", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Skybreach.png", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Skybreach.png", "url": "https://skybreach.app/", "categories": [ "nft", - "evm" + "evm", + "gaming" ] }, { "name": "Polkawatch", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Polkawatch.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkawatch.svg", "url": "https://polkawatch.app/", "categories": [ "staking" @@ -512,24 +466,34 @@ }, { "name": "Damned Pirates Society", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Damnedpiratessociety.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Damnedpiratessociety.svg", "url": "https://damnedpiratessociety.io/", "categories": [ "nft", - "evm" + "evm", + "gaming" ] }, { "name": "Polkadot Staking Dashboard", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/StakingDashboard.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/StakingDashboard.svg", "url": "https://staking.polkadot.network/dashboard#/overview", + "categories": [ + "staking", + "utilities" + ] + }, + { + "name": "Polkadot Staking Pools", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/StakingDashboard.svg", + "url": "https://staking.polkadot.network/#/pools", "categories": [ "staking" ] }, { "name": "Moonsama", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/Moonsama.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonsama.svg", "url": "https://marketplace.moonsama.com/", "categories": [ "nft", @@ -538,11 +502,337 @@ }, { "name": "EVRLOOT", - "icon": "https://raw.githubusercontent.com/nova-wallet/nova-utils/master/icons/dapps/color/EVRLOOT.svg", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/EVRLOOT.svg", "url": "https://game.evrloot.com/game", "categories": [ + "nft", + "gaming" + ] + }, + { + "name": "Downtown Moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DowntownMoonbeam.png", + "url": "https://dtmb.xyz", + "categories": [ + "evm", + "social" + ] + }, + { + "name": "Evolution Land. Columbus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Evolutionland.png", + "url": "https://portal.evolution.land/land/3/market/land", + "categories": [ + "nft", + "evm", + "gaming" + ] + }, + { + "name": "Basilisk Snek Swap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/SnekSwap.svg", + "url": "https://app.basilisk.cloud/#/trade", + "categories": [ + "bridge", + "dex" + ] + }, + { + "name": "Moonbeam Curve", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/MoonbeamCurve.svg", + "url": "https://moonbeam.curve.fi/", + "categories": [ + "dex", + "evm" + ] + }, + { + "name": "Nomad", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Nomad.svg", + "url": "https://app.nomad.xyz/", + "categories": [ + "bridge", + "evm" + ] + }, + { + "name": "GM! Say it back", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/GM.svg", + "url": "https://app.gmordie.com/", + "categories": [ + "social" + ] + }, + { + "name": "Raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Raresama.svg", + "url": "https://raresama.com/", + "categories": [ + "nft" + ] + }, + { + "name": "Bit.Country Pioneer Metaverse", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Bit.Country.svg", + "url": "https://pioneer.bit.country/", + "categories": [ + "nft", + "staking", + "gaming" + ] + }, + { + "name": "Zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Zeitgeist.svg", + "url": "https://app.zeitgeist.pm/", + "categories": [ + "utilities" + ] + }, + { + "name": "ACE", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ACE.svg", + "url": "https://ace.web3go.xyz/#/", + "categories": [ + "utilities" + ] + }, + { + "name": "Proof of Chaos", + "url": "https://proofofchaos.app", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Proof_of_Chaos.png", + "categories": [ + "nft", + "governance" + ] + }, + { + "name": "Polkadex Orderbook", + "url": "https://orderbook.polkadex.trade/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkadex.svg", + "categories": [ + "dex", + "utilities" + ] + }, + { + "name": "Interlay Bitcoin DeFi Hub", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Interlay.svg", + "url": "https://app.interlay.io/", + "categories": [ + "bridge", + "staking", + "dex" + ] + }, + { + "name": "Litentry App", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Litentry.svg", + "url": "https://apps.litentry.com/", + "categories": [ + "bridge", + "evm" + ] + }, + { + "name": "xx network Hub", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/xx.svg", + "url": "https://hub.xx.network", + "categories": [ + "social", + "staking", + "utilities" + ] + }, + { + "name": "Acala App (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Acala.png", + "url": "https://apps.acala.network/", + "categories": [ + "bridge", + "dex", + "staking" + ], + "desktopOnly": true + }, + { + "name": "Mangata X (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/MangataX.svg", + "url": "https://app.mangata.finance/", + "categories": [ + "bridge" + ], + "desktopOnly": true + }, + { + "name": "Zenlink", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Zenlink.svg", + "url": "https://app.zenlink.pro", + "categories": [ + "dex", + "staking" + ] + }, + { + "name": "Gensiro (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Genshiro.svg", + "url": "https://genshiro.equilibrium.io/gateway/en/market", + "categories": [ + "dex", + "staking", + "test" + ], + "desktopOnly": true + }, + { + "name": "Equilibrium (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Equilibrium.svg", + "url": "https://app.equilibrium.io/", + "categories": [ + "dex", + "staking", + "test" + ], + "desktopOnly": true + }, + { + "name": "HydraDX Omnipool", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Hydradx.svg", + "url": "https://hydradx.io/NOVA", + "categories": [ + "bridge", + "dex" + ] + }, + { + "name": "PABLO", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Pablo.svg", + "url": "https://app.pablo.finance/", + "categories": [ + "dex" + ] + }, + { + "name": "Secret Stash", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/secret_stash.png", + "url": "https://secret-stash.io/", + "categories": [ + "nft", + "utilities" + ] + }, + { + "name": "GIANTProtocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Giant.svg", + "url": "https://app.giantprotocol.org/shop", + "categories": [ + "utilities" + ] + }, + { + "name": "Pendulum Chain Portal", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg", + "url": "https://portal.pendulumchain.org/pendulum/dashboard", + "categories": [ + "utilities", + "staking" + ] + }, + { + "name": "Awesome Ajuna Avatars (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/AwesomeAjunaAvatars.svg", + "url": "https://aaa.ajuna.io/", + "categories": [ + "nft", + "gaming" + ], + "desktopOnly": true + }, + { + "name": "Tensor Wallet", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/TensorWallet.svg", + "url": "https://tensorwallet.ca/", + "categories": [ + "utilities", + "staking" + ] + }, + { + "name": "AZERO.ID", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/AzeroID.svg", + "url": "https://azero.id/", + "categories": [ + "utilities" + ] + }, + { + "name": "Omni Liquid Staking", + "url": "https://omni.ls/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/OmniLS.svg", + "categories": [ + "bridge", + "staking" + ] + }, + { + "name": "MULTIX", + "url": "https://multix.chainsafe.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Multix.svg", + "categories": [ + "utilities" + ] + }, + { + "name": "Joystream Governance App", + "url": "https://pioneerapp.xyz/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Pioneer.svg", + "categories": [ + "governance" + ] + }, + { + "name": "Gleev", + "url": "https://gleev.xyz/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/gleev.svg", + "categories": [ + "social" + ] + }, + { + "name": "InvArch Dashboard", + "url": "https://portal.invarch.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/InvArch.svg", + "categories": [ + "crowdloans", + "governance" + ] + }, + { + "name": "Ternoa HUB", + "url": "https://hub.ternoa.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Ternoa.png", + "categories": [ + "staking" + ] + }, + { + "name": "DED Mine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DED.svg", + "url": "https://ded.games/play/dedmine", + "categories": [ + "gaming", "nft" ] + }, + { + "name": "Capital DEX", + "url": "https://capitaldex.exchange/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/CapitalDEX.svg", + "categories": [ + "dex", + "staking", + "evm" + ] } ] } diff --git a/dapps/dapps_full.json b/dapps/dapps_full.json new file mode 100644 index 000000000..fd503b9f6 --- /dev/null +++ b/dapps/dapps_full.json @@ -0,0 +1,729 @@ +{ + "categories": [ + { + "name": "Bridge", + "id": "bridge" + }, + { + "name": "Crowdloans", + "id": "crowdloans" + }, + { + "name": "DEX", + "id": "dex" + }, + { + "name": "EVM", + "id": "evm" + }, + { + "name": "Gaming", + "id": "gaming" + }, + { + "name": "Governance", + "id": "governance" + }, + { + "name": "NFT", + "id": "nft" + }, + { + "name": "Social", + "id": "social" + }, + { + "name": "Staking", + "id": "staking" + }, + { + "name": "Utilities", + "id": "utilities" + } + ], + "dapps": [ + { + "name": "Singular 2.0", + "url": "https://singular.app/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Singular_2.0.svg", + "categories": [ + "nft" + ] + }, + { + "name": "Singular", + "url": "https://singular.rmrk.app/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Singular.svg", + "categories": [ + "nft" + ] + }, + { + "name": "Kanaria", + "url": "https://kanaria.rmrk.app/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Kanaria.svg", + "categories": [ + "nft" + ] + }, + { + "name": "Bifrost App", + "url": "https://bifrost.app/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Bifrost.svg", + "categories": [ + "bridge", + "crowdloans", + "dex", + "staking" + ] + }, + { + "name": "Astar Portal", + "url": "https://portal.astar.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Astar.png", + "categories": [ + "bridge", + "staking", + "evm" + ] + }, + { + "name": "Grill", + "url": "https://grillapp.net", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Grill.svg", + "categories": [ + "social" + ] + }, + { + "name": "Sub.ID", + "url": "https://sub.id/#/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Sub.ID.png", + "categories": [ + "utilities" + ] + }, + { + "name": "Polkadot.js", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkadot.js.svg", + "url": "https://polkadot.js.org/apps/#", + "categories": [ + "utilities" + ] + }, + { + "name": "KodaDot", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/KodaDot.svg", + "url": "https://kodadot.xyz/", + "categories": [ + "nft" + ] + }, + { + "name": "Dotmarketcap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Dotmarketcap.svg", + "url": "https://dotmarketcap.com/", + "categories": [ + "social" + ] + }, + { + "name": "Polkassembly", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "url": "https://polkadot.polkassembly.io/", + "categories": [ + "governance" + ] + }, + { + "name": "Talisman Portal", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Talisman.svg", + "url": "https://app.talisman.xyz/portfolio", + "categories": [ + "crowdloans", + "nft" + ] + }, + { + "name": "Phala App", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Phala.svg", + "url": "https://app.phala.network/", + "categories": [ + "staking" + ] + }, + { + "name": "Kintsugi Hub", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Kintsugi.svg", + "url": "https://kintsugi.interlay.io/", + "categories": [ + "bridge", + "staking", + "crowdloans" + ] + }, + { + "name": "Moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonbeam.svg", + "url": "https://apps.moonbeam.network/moonbeam", + "categories": [ + "bridge", + "staking", + "crowdloans", + "evm" + ] + }, + { + "name": "Moonriver", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonriver.svg", + "url": "https://apps.moonbeam.network/moonriver", + "categories": [ + "bridge", + "staking", + "crowdloans", + "evm" + ] + }, + { + "name": "Solarflare", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Solarflare.png", + "url": "https://app.solarflare.io/exchange/swap", + "categories": [ + "bridge", + "dex", + "staking", + "evm" + ] + }, + { + "name": "Solarbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Solarbeam.png", + "url": "https://app.solarbeam.io/exchange/swap", + "categories": [ + "bridge", + "dex", + "staking", + "evm" + ] + }, + { + "name": "Beamswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Beamswap.svg", + "url": "https://app.beamswap.io/exchange/braindex", + "categories": [ + "bridge", + "dex", + "staking", + "evm" + ] + }, + { + "name": "Stellaswap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/StellaSwap.svg", + "url": "https://app.stellaswap.com/exchange/swap", + "categories": [ + "bridge", + "dex", + "staking", + "evm" + ] + }, + { + "name": "Impossible Finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ImpossibleFinance.svg", + "url": "https://app.impossible.finance/explore", + "categories": [ + "dex", + "evm" + ] + }, + { + "name": "Huckleberry Finance", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Huckleberry.svg", + "url": "https://www.huckleberry.finance/#/swap", + "categories": [ + "bridge", + "dex", + "staking", + "evm" + ] + }, + { + "name": "MyTrade", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/MyTrade.svg", + "url": "https://mytrade.org/", + "categories": [ + "dex", + "staking", + "evm" + ] + }, + { + "name": "Parallel Finance App", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Parallel-Heiko.svg", + "url": "https://app.parallel.fi/", + "categories": [ + "bridge", + "dex" + ] + }, + { + "name": "DappRadar", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DappRadar.svg", + "url": "https://dappradar.com/", + "categories": [ + "social" + ] + }, + { + "name": "TofuNFT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/TofuNFT.svg", + "url": "https://tofunft.com/", + "categories": [ + "nft", + "evm" + ] + }, + { + "name": "Subsquare", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "url": "https://polkadot.subsquare.io/", + "categories": [ + "governance" + ] + }, + { + "name": "Kusama Lido", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/LIDO_KSM.svg", + "url": "https://kusama.lido.fi/", + "categories": [ + "staking", + "evm" + ] + }, + { + "name": "Polkadot Lido", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/LIDO_DOT.svg", + "url": "https://polkadot.lido.fi/", + "categories": [ + "staking", + "evm" + ] + }, + { + "name": "ArthSwap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ArthSwap.svg", + "url": "https://app.arthswap.org/#/swap", + "categories": [ + "dex", + "staking", + "evm" + ] + }, + { + "name": "cBRIDGE", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/cBRIDGE.png", + "url": "https://cbridge.celer.network/#/transfer", + "categories": [ + "dex", + "evm", + "nft" + ] + }, + { + "name": "Moonwell", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonwell.svg", + "url": "https://moonwell.fi/discover", + "categories": [ + "bridge", + "staking", + "evm" + ] + }, + { + "name": "SubBridge", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/SubBridge.svg", + "url": "https://subbridge.io/", + "categories": [ + "bridge", + "evm" + ] + }, + { + "name": "Skybreach", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Skybreach.png", + "url": "https://skybreach.app/", + "categories": [ + "nft", + "evm", + "gaming" + ] + }, + { + "name": "Polkawatch", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkawatch.svg", + "url": "https://polkawatch.app/", + "categories": [ + "staking" + ] + }, + { + "name": "Damned Pirates Society", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Damnedpiratessociety.svg", + "url": "https://damnedpiratessociety.io/", + "categories": [ + "nft", + "evm", + "gaming" + ] + }, + { + "name": "Polkadot Staking Dashboard", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/StakingDashboard.svg", + "url": "https://staking.polkadot.network/dashboard#/overview", + "categories": [ + "staking", + "utilities" + ] + }, + { + "name": "Moonsama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Moonsama.svg", + "url": "https://marketplace.moonsama.com/", + "categories": [ + "nft", + "evm" + ] + }, + { + "name": "Downtown Moonbeam", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DowntownMoonbeam.png", + "url": "https://dtmb.xyz", + "categories": [ + "evm", + "social" + ] + }, + { + "name": "EVRLOOT", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/EVRLOOT.svg", + "url": "https://game.evrloot.com/game", + "categories": [ + "nft", + "gaming" + ] + }, + { + "name": "Darwinia App", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Darwinia.svg", + "url": "https://apps.darwinia.network/", + "categories": [ + "staking" + ] + }, + { + "name": "Evolution Land. Columbus", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Evolutionland.png", + "url": "https://portal.evolution.land/land/3/market/land", + "categories": [ + "nft", + "evm", + "gaming" + ] + }, + { + "name": "Basilisk Snek Swap", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/SnekSwap.svg", + "url": "https://app.basilisk.cloud/#/trade", + "categories": [ + "bridge", + "dex" + ] + }, + { + "name": "GM! Say it back", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/GM.svg", + "url": "https://app.gmordie.com/", + "categories": [ + "social" + ] + }, + { + "name": "Tinkernet Dashboard", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Tinkernet.svg", + "url": "https://www.tinker.network/overview", + "categories": [ + "staking", + "bridge", + "crowdloans" + ] + }, + { + "name": "Raresama", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Raresama.svg", + "url": "https://raresama.com/", + "categories": [ + "nft" + ] + }, + { + "name": "Bit.Country Pioneer Metaverse", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Bit.Country.svg", + "url": "https://pioneer.bit.country/", + "categories": [ + "nft", + "staking", + "gaming" + ] + }, + { + "name": "Zeitgeist", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Zeitgeist.svg", + "url": "https://app.zeitgeist.pm/", + "categories": [ + "utilities" + ] + }, + { + "name": "ACE", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/ACE.svg", + "url": "https://ace.web3go.xyz/#/", + "categories": [ + "utilities" + ] + }, + { + "name": "Proof of Chaos", + "url": "https://proofofchaos.app", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Proof_of_Chaos.png", + "categories": [ + "nft", + "governance" + ] + }, + { + "name": "Polkadex Orderbook", + "url": "https://orderbook.polkadex.trade/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkadex.svg", + "categories": [ + "dex", + "utilities" + ] + }, + { + "name": "Interlay Bitcoin DeFi Hub", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Interlay.svg", + "url": "https://app.interlay.io/", + "categories": [ + "bridge", + "staking", + "dex" + ] + }, + { + "name": "xx network Hub", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/xx.svg", + "url": "https://hub.xx.network", + "categories": [ + "social", + "staking", + "utilities" + ] + }, + { + "name": "Litentry App", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Litentry.svg", + "url": "https://apps.litentry.com/", + "categories": [ + "bridge", + "evm" + ] + }, + { + "name": "HydraDX Omnipool", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Hydradx.svg", + "url": "https://hydradx.io/NOVA", + "categories": [ + "bridge", + "dex" + ] + }, + { + "name": "PABLO", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Pablo.svg", + "url": "https://app.pablo.finance/", + "categories": [ + "dex" + ] + }, + { + "name": "Karura App (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/Karura.svg", + "url": "https://apps.karura.network/", + "categories": [ + "bridge", + "dex", + "staking" + ], + "desktopOnly": true + }, + { + "name": "Acala App (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Acala.png", + "url": "https://apps.acala.network/", + "categories": [ + "bridge", + "dex", + "staking" + ], + "desktopOnly": true + }, + { + "name": "Mangata X (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/MangataX.svg", + "url": "https://app.mangata.finance/", + "categories": [ + "bridge" + ], + "desktopOnly": true + }, + { + "name": "Zenlink", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Zenlink.svg", + "url": "https://app.zenlink.pro", + "categories": [ + "dex", + "staking" + ] + }, + { + "name": "KILT Stakeboard (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/KILT.svg", + "url": "https://stakeboard.kilt.io/", + "categories": [ + "staking" + ], + "desktopOnly": true + }, + { + "name": "Secret Stash", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/secret_stash.png", + "url": "https://secret-stash.io/", + "categories": [ + "nft", + "utilities" + ] + }, + { + "name": "GIANTProtocol", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Giant.svg", + "url": "https://app.giantprotocol.org/shop", + "categories": [ + "utilities" + ] + }, + { + "name": "Pendulum Chain Portal", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/tokens/white/PEN.svg", + "url": "https://portal.pendulumchain.org/pendulum/dashboard", + "categories": [ + "utilities", + "staking" + ] + }, + { + "name": "Robonomics", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Robonomics.svg", + "url": "https://dapp.robonomics.network/#/", + "categories": [ + "utilities" + ] + }, + { + "name": "Awesome Ajuna Avatars (Desktop mode)", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/AwesomeAjunaAvatars.svg", + "url": "https://aaa.ajuna.io/", + "categories": [ + "nft", + "gaming" + ], + "desktopOnly": true + }, + { + "name": "Tensor Wallet", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/TensorWallet.svg", + "url": "https://tensorwallet.ca/", + "categories": [ + "utilities", + "staking" + ] + }, + { + "name": "AZERO.ID", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/AzeroID.svg", + "url": "https://azero.id/", + "categories": [ + "utilities" + ] + }, + { + "name": "Omni Liquid Staking", + "url": "https://omni.ls/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/OmniLS.svg", + "categories": [ + "bridge", + "staking" + ] + }, + { + "name": "MULTIX", + "url": "https://multix.chainsafe.io/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Multix.svg", + "categories": [ + "utilities" + ] + }, + { + "name": "Joystream Governance App", + "url": "https://pioneerapp.xyz/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Pioneer.svg", + "categories": [ + "governance" + ] + }, + { + "name": "Gleev", + "url": "https://gleev.xyz/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/gleev.svg", + "categories": [ + "social" + ] + }, + { + "name": "InvArch Dashboard", + "url": "https://portal.invarch.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/InvArch.svg", + "categories": [ + "crowdloans", + "governance" + ] + }, + { + "name": "Ternoa HUB", + "url": "https://hub.ternoa.network/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Ternoa.png", + "categories": [ + "staking" + ] + }, + { + "name": "DED Mine", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/DED.svg", + "url": "https://ded.games/play/dedmine", + "categories": [ + "gaming", + "nft" + ] + } + ] +} diff --git a/governance/dapps.json b/governance/dapps.json new file mode 100644 index 000000000..ff951171d --- /dev/null +++ b/governance/dapps.json @@ -0,0 +1,81 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://polkadot.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://polkadot.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://kusama.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://kusama.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + }, + { + "title": "Proof of Chaos", + "url": "https://www.proofofchaos.app/vote/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Proof_of_Chaos.png", + "details": "Pass the quiz for NFT upgrade" + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://moonbeam.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://moonriver.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://centrifuge.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://centrifuge.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + } +] diff --git a/governance/dapps_dev.json b/governance/dapps_dev.json new file mode 100644 index 000000000..7c91bceec --- /dev/null +++ b/governance/dapps_dev.json @@ -0,0 +1,375 @@ +[ + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://something.com/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://something.com/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://polkadot.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://polkadot.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://kusama.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://kusama.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + }, + { + "title": "Proof of Chaos", + "url": "https://www.proofofchaos.app/vote/", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Proof_of_Chaos.png", + "details": "Pass the quiz for NFT upgrade" + } + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://altair.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://altair.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://amplitude.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://basilisk.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://calamari.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://centrifuge.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://centrifuge.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://crustshadow.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://heiko.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://hydradx.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://karura.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://karura.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://khala.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://khala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://kilt.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://kylin.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://moonbeam.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://moonriver.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://parallel.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://pioneer.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://polkadex.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://robonomics.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://tanganika.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://turing.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://acala.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "url": "https://acala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "dapps": [ + { + "title": "Polkassembly", + "url": "https://composable.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "dapps": [ + { + "title": "Subsquare", + "url": "https://phala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "dapps": [ + { + "title": "Subsquare", + "url": "https://bifrost.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "dapps": [ + { + "title": "Subsquare", + "url": "https://litmus.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "dapps": [ + { + "title": "Subsquare", + "url": "https://zeitgeist.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + } +] diff --git a/governance/v2/dapps.json b/governance/v2/dapps.json new file mode 100644 index 000000000..a60206d15 --- /dev/null +++ b/governance/v2/dapps.json @@ -0,0 +1,220 @@ +[ + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://polkadot.polkassembly.io/referendum/{referendumId}", + "urlV2": "https://polkadot.polkassembly.io/referenda/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://polkadot.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://polkadot.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://kusama.polkassembly.io/referendum/{referendumId}", + "urlV2": "https://kusama.polkassembly.io/referenda/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://kusama.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://kusama.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + }, + { + "title": "Proof of Chaos", + "urlV2": "https://www.proofofchaos.app/referenda/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Proof_of_Chaos.png", + "details": "Vote for NFT" + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://moonbeam.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://moonriver.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://moonriver.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://moonriver.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://kilt.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://basilisk.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://robonomics.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://hydradx.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://centrifuge.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://centrifuge.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://phala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://zeitgeist.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://altair.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://bifrost.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://acala.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://acala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://karura.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://bifrost-kusama.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://bifrost-kusama.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + } +] diff --git a/governance/v2/dapps_dev.json b/governance/v2/dapps_dev.json new file mode 100644 index 000000000..e6f2ee767 --- /dev/null +++ b/governance/v2/dapps_dev.json @@ -0,0 +1,392 @@ +[ + { + "chainId": "a2ee5a1f55a23dccd0c35e36512f9009e6e50a5654e8e5e469445d0748632aa8", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://something.com/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://something.com/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://polkadot.polkassembly.io/referendum/{referendumId}", + "urlV2": "https://polkadot.polkassembly.io/referenda/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://polkadot.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://polkadot.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://kusama.polkassembly.io/referendum/{referendumId}", + "urlV2": "https://kusama.polkassembly.io/referenda/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://kusama.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://kusama.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + }, + { + "title": "Proof of Chaos", + "urlV2": "https://www.proofofchaos.app/referenda/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Proof_of_Chaos.png", + "details": "Vote for NFT" + } + ] + }, + { + "chainId": "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://altair.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://amplitude.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://basilisk.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://calamari.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://centrifuge.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://centrifuge.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://crustshadow.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://heiko.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://hydradx.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://karura.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://khala.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://khala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://kilt.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "f2584690455deda322214e97edfffaf4c1233b6e4625e39478496b3e2f5a44c5", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://kylin.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://moonbeam.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://moonriver.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://moonriver.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://moonriver.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://parallel.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://pioneer.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://polkadex.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://robonomics.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://tanganika.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://turing.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://turing.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://acala.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + }, + { + "title": "Subsquare", + "urlV1": "https://acala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", + "dapps": [ + { + "title": "Polkassembly", + "urlV1": "https://composable.polkassembly.io/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/dapps/color/Polkassembly.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://phala.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://bifrost-kusama.subsquare.io/democracy/referendum/{referendumId}", + "urlV2": "https://bifrost-kusama.subsquare.io/referenda/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://litmus.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://zeitgeist.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "dapps": [ + { + "title": "Subsquare", + "urlV1": "https://bifrost.subsquare.io/democracy/referendum/{referendumId}", + "icon": "https://raw.githubusercontent.com/novasamatech/nova-utils/master/icons/chains/color/SubSquare.svg", + "details": "Comment and react" + } + ] + } +] diff --git a/icons/chains/color/SubSquare.svg b/icons/chains/color/SubSquare.svg index 891420ff7..2315b0977 100644 --- a/icons/chains/color/SubSquare.svg +++ b/icons/chains/color/SubSquare.svg @@ -1,4 +1,4 @@ - \ No newline at end of file + diff --git a/icons/chains/gradient/3DPass.svg b/icons/chains/gradient/3DPass.svg new file mode 100644 index 000000000..e1feddd85 --- /dev/null +++ b/icons/chains/gradient/3DPass.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Ajuna.svg b/icons/chains/gradient/Ajuna.svg index ff87591a4..e6baa62b6 100644 --- a/icons/chains/gradient/Ajuna.svg +++ b/icons/chains/gradient/Ajuna.svg @@ -1,11 +1,22 @@ - + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/AlephZero_Testnet.svg b/icons/chains/gradient/AlephZero_Testnet.svg new file mode 100644 index 000000000..7606c18b0 --- /dev/null +++ b/icons/chains/gradient/AlephZero_Testnet.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/chains/gradient/Amplitude_foucoco.svg b/icons/chains/gradient/Amplitude_foucoco.svg new file mode 100644 index 000000000..549e5645e --- /dev/null +++ b/icons/chains/gradient/Amplitude_foucoco.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Apron.svg b/icons/chains/gradient/Apron.svg index 7ec69cbcf..9c1e98c54 100644 --- a/icons/chains/gradient/Apron.svg +++ b/icons/chains/gradient/Apron.svg @@ -1,11 +1,22 @@ - + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/AssetHub_Testnet.svg b/icons/chains/gradient/AssetHub_Testnet.svg new file mode 100644 index 000000000..d48bb80fb --- /dev/null +++ b/icons/chains/gradient/AssetHub_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Avail.svg b/icons/chains/gradient/Avail.svg new file mode 100644 index 000000000..38583e669 --- /dev/null +++ b/icons/chains/gradient/Avail.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Avail_Testnet.svg b/icons/chains/gradient/Avail_Testnet.svg new file mode 100644 index 000000000..cdb3aaecd --- /dev/null +++ b/icons/chains/gradient/Avail_Testnet.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Aventus.svg b/icons/chains/gradient/Aventus.svg new file mode 100644 index 000000000..50cb30d14 --- /dev/null +++ b/icons/chains/gradient/Aventus.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Aventus_Testnet.svg b/icons/chains/gradient/Aventus_Testnet.svg new file mode 100644 index 000000000..c877d5477 --- /dev/null +++ b/icons/chains/gradient/Aventus_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/BSC.svg b/icons/chains/gradient/BSC.svg new file mode 100644 index 000000000..4af16012e --- /dev/null +++ b/icons/chains/gradient/BSC.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/BSCTestnet.svg b/icons/chains/gradient/BSCTestnet.svg new file mode 100644 index 000000000..88024557b --- /dev/null +++ b/icons/chains/gradient/BSCTestnet.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Bajun.svg b/icons/chains/gradient/Bajun.svg index 605c987a9..6f92d0802 100644 --- a/icons/chains/gradient/Bajun.svg +++ b/icons/chains/gradient/Bajun.svg @@ -1,12 +1,13 @@ - + + + - + - diff --git a/icons/chains/gradient/Beresheet.svg b/icons/chains/gradient/Beresheet.svg new file mode 100644 index 000000000..734dc550f --- /dev/null +++ b/icons/chains/gradient/Beresheet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Bifrost_Kusama.svg b/icons/chains/gradient/Bifrost_Kusama.svg index e757e9118..53a34035e 100644 --- a/icons/chains/gradient/Bifrost_Kusama.svg +++ b/icons/chains/gradient/Bifrost_Kusama.svg @@ -1,9 +1,10 @@ - + + + - - + diff --git a/icons/chains/gradient/Bifrost_Polkadot.svg b/icons/chains/gradient/Bifrost_Polkadot.svg index c6c77607b..b4f651597 100644 --- a/icons/chains/gradient/Bifrost_Polkadot.svg +++ b/icons/chains/gradient/Bifrost_Polkadot.svg @@ -1,14 +1,25 @@ - + + + + + + + + + + - - + + + + diff --git a/icons/chains/gradient/Bit.Country_Continuum.svg b/icons/chains/gradient/Bit.Country_Continuum.svg index 266059336..3d29b48af 100644 --- a/icons/chains/gradient/Bit.Country_Continuum.svg +++ b/icons/chains/gradient/Bit.Country_Continuum.svg @@ -1,12 +1,23 @@ - + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/Bit.Country_Pioneer.svg b/icons/chains/gradient/Bit.Country_Pioneer.svg index 25850eae8..7d91e5d16 100644 --- a/icons/chains/gradient/Bit.Country_Pioneer.svg +++ b/icons/chains/gradient/Bit.Country_Pioneer.svg @@ -1,11 +1,21 @@ - - + + + + + + + + - - - - + + + + + + + + diff --git a/icons/chains/gradient/Bitgreen.svg b/icons/chains/gradient/Bitgreen.svg new file mode 100644 index 000000000..16e277375 --- /dev/null +++ b/icons/chains/gradient/Bitgreen.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Bittensor.svg b/icons/chains/gradient/Bittensor.svg new file mode 100644 index 000000000..0b571f673 --- /dev/null +++ b/icons/chains/gradient/Bittensor.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/BridgeHub_Testnet.svg b/icons/chains/gradient/BridgeHub_Testnet.svg new file mode 100644 index 000000000..77ae46bd6 --- /dev/null +++ b/icons/chains/gradient/BridgeHub_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/CLV_Parachain.svg b/icons/chains/gradient/CLV_Parachain.svg index 36d065b80..c76c37a25 100644 --- a/icons/chains/gradient/CLV_Parachain.svg +++ b/icons/chains/gradient/CLV_Parachain.svg @@ -1,11 +1,22 @@ - + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/Composable.svg b/icons/chains/gradient/Composable.svg index 8f3b3997b..12f9b0dc1 100644 --- a/icons/chains/gradient/Composable.svg +++ b/icons/chains/gradient/Composable.svg @@ -1,15 +1,25 @@ - - - + + + + + + + + + + + + + + + - - - - - - - + + + - + + + diff --git a/icons/chains/gradient/Continuum.svg b/icons/chains/gradient/Continuum.svg new file mode 100644 index 000000000..216fc2ad3 --- /dev/null +++ b/icons/chains/gradient/Continuum.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Crab.svg b/icons/chains/gradient/Crab.svg index 37be916d6..dea319d40 100644 --- a/icons/chains/gradient/Crab.svg +++ b/icons/chains/gradient/Crab.svg @@ -1,10 +1,15 @@ - - + + + + - - - + + + + + + diff --git a/icons/chains/gradient/Crust.svg b/icons/chains/gradient/Crust.svg index f5afb94a3..1e6933f26 100644 --- a/icons/chains/gradient/Crust.svg +++ b/icons/chains/gradient/Crust.svg @@ -1,10 +1,15 @@ - - + + + + - + + + + diff --git a/icons/chains/gradient/Crust_Parachain.svg b/icons/chains/gradient/Crust_Parachain.svg new file mode 100644 index 000000000..c5a21ae89 --- /dev/null +++ b/icons/chains/gradient/Crust_Parachain.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Curio.svg b/icons/chains/gradient/Curio.svg new file mode 100644 index 000000000..19e929792 --- /dev/null +++ b/icons/chains/gradient/Curio.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/DAOIPCI.svg b/icons/chains/gradient/DAOIPCI.svg new file mode 100644 index 000000000..c131d0eb7 --- /dev/null +++ b/icons/chains/gradient/DAOIPCI.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Darwinia.svg b/icons/chains/gradient/Darwinia.svg index 85c04b0af..b81ba48e7 100644 --- a/icons/chains/gradient/Darwinia.svg +++ b/icons/chains/gradient/Darwinia.svg @@ -1,15 +1,15 @@ - - - + + + - - - + + + - - + + diff --git a/icons/chains/gradient/Dock.svg b/icons/chains/gradient/Dock.svg new file mode 100644 index 000000000..ff958f775 --- /dev/null +++ b/icons/chains/gradient/Dock.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Energy_Web.svg b/icons/chains/gradient/Energy_Web.svg new file mode 100644 index 000000000..654d19e54 --- /dev/null +++ b/icons/chains/gradient/Energy_Web.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Energy_Web_Testnet.svg b/icons/chains/gradient/Energy_Web_Testnet.svg new file mode 100644 index 000000000..0820cc48c --- /dev/null +++ b/icons/chains/gradient/Energy_Web_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Energy_Web_X.svg b/icons/chains/gradient/Energy_Web_X.svg new file mode 100644 index 000000000..58875b8de --- /dev/null +++ b/icons/chains/gradient/Energy_Web_X.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Enjin.svg b/icons/chains/gradient/Enjin.svg new file mode 100644 index 000000000..d67513e01 --- /dev/null +++ b/icons/chains/gradient/Enjin.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Ethereum.svg b/icons/chains/gradient/Ethereum.svg new file mode 100644 index 000000000..9fb959860 --- /dev/null +++ b/icons/chains/gradient/Ethereum.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Ethereum_Goerli.svg b/icons/chains/gradient/Ethereum_Goerli.svg new file mode 100644 index 000000000..e4d9ee8ab --- /dev/null +++ b/icons/chains/gradient/Ethereum_Goerli.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Exosama.svg b/icons/chains/gradient/Exosama.svg new file mode 100644 index 000000000..42bb9eb5d --- /dev/null +++ b/icons/chains/gradient/Exosama.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Frequency.svg b/icons/chains/gradient/Frequency.svg new file mode 100644 index 000000000..b4cd47229 --- /dev/null +++ b/icons/chains/gradient/Frequency.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Fusotao.svg b/icons/chains/gradient/Fusotao.svg new file mode 100644 index 000000000..6d27e7bc4 --- /dev/null +++ b/icons/chains/gradient/Fusotao.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Giant.svg b/icons/chains/gradient/Giant.svg new file mode 100644 index 000000000..6b68ca883 --- /dev/null +++ b/icons/chains/gradient/Giant.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Giant_Testnet.svg b/icons/chains/gradient/Giant_Testnet.svg new file mode 100644 index 000000000..ac81ae652 --- /dev/null +++ b/icons/chains/gradient/Giant_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Governance2_Testnet.svg b/icons/chains/gradient/Governance2_Testnet.svg new file mode 100644 index 000000000..2de05cc3b --- /dev/null +++ b/icons/chains/gradient/Governance2_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Hashed.svg b/icons/chains/gradient/Hashed.svg new file mode 100644 index 000000000..257efe33f --- /dev/null +++ b/icons/chains/gradient/Hashed.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Hyperbridge.svg b/icons/chains/gradient/Hyperbridge.svg new file mode 100644 index 000000000..44dccf857 --- /dev/null +++ b/icons/chains/gradient/Hyperbridge.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Integritee_Kusama.svg b/icons/chains/gradient/Integritee_Kusama.svg index 745d6ae35..0dad61d13 100644 --- a/icons/chains/gradient/Integritee_Kusama.svg +++ b/icons/chains/gradient/Integritee_Kusama.svg @@ -1,11 +1,12 @@ - + + + - - - - + + + diff --git a/icons/chains/gradient/Integritee_Polkadot.svg b/icons/chains/gradient/Integritee_Polkadot.svg index 9507104ba..8b81e07fe 100644 --- a/icons/chains/gradient/Integritee_Polkadot.svg +++ b/icons/chains/gradient/Integritee_Polkadot.svg @@ -1,11 +1,22 @@ - + + + + + + + + + + - - - - + + + + + + diff --git a/icons/chains/gradient/Interlay_Testnet.svg b/icons/chains/gradient/Interlay_Testnet.svg new file mode 100644 index 000000000..cbd8bf29f --- /dev/null +++ b/icons/chains/gradient/Interlay_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/InvArch.svg b/icons/chains/gradient/InvArch.svg new file mode 100644 index 000000000..c0105c3df --- /dev/null +++ b/icons/chains/gradient/InvArch.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Joystream.svg b/icons/chains/gradient/Joystream.svg new file mode 100644 index 000000000..cf82eb076 --- /dev/null +++ b/icons/chains/gradient/Joystream.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Jur.svg b/icons/chains/gradient/Jur.svg new file mode 100644 index 000000000..6298a62d9 --- /dev/null +++ b/icons/chains/gradient/Jur.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Kintsugi_Testnet.svg b/icons/chains/gradient/Kintsugi_Testnet.svg new file mode 100644 index 000000000..5007ee720 --- /dev/null +++ b/icons/chains/gradient/Kintsugi_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Kpron.svg b/icons/chains/gradient/Kpron.svg index a2a4445c9..66c9faf54 100644 --- a/icons/chains/gradient/Kpron.svg +++ b/icons/chains/gradient/Kpron.svg @@ -1,11 +1,12 @@ - + + + - + - diff --git a/icons/chains/gradient/Kusama_Asset_Hub.svg b/icons/chains/gradient/Kusama_Asset_Hub.svg new file mode 100644 index 000000000..3f8055529 --- /dev/null +++ b/icons/chains/gradient/Kusama_Asset_Hub.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Kusama_Bridge_Hub.svg b/icons/chains/gradient/Kusama_Bridge_Hub.svg new file mode 100644 index 000000000..b9481a96b --- /dev/null +++ b/icons/chains/gradient/Kusama_Bridge_Hub.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/LAOS.svg b/icons/chains/gradient/LAOS.svg new file mode 100644 index 000000000..b99de436c --- /dev/null +++ b/icons/chains/gradient/LAOS.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Logion.svg b/icons/chains/gradient/Logion.svg new file mode 100644 index 000000000..9fce63543 --- /dev/null +++ b/icons/chains/gradient/Logion.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Manta.svg b/icons/chains/gradient/Manta.svg index 26f729388..7eb7e7e88 100644 --- a/icons/chains/gradient/Manta.svg +++ b/icons/chains/gradient/Manta.svg @@ -1,11 +1,16 @@ - - + + + + + + + diff --git a/icons/chains/gradient/Moonsama.svg b/icons/chains/gradient/Moonsama.svg new file mode 100644 index 000000000..36b5f8894 --- /dev/null +++ b/icons/chains/gradient/Moonsama.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Myriad.svg b/icons/chains/gradient/Myriad.svg new file mode 100644 index 000000000..a7be86fe8 --- /dev/null +++ b/icons/chains/gradient/Myriad.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/NeuroWeb.svg b/icons/chains/gradient/NeuroWeb.svg new file mode 100644 index 000000000..775e48602 --- /dev/null +++ b/icons/chains/gradient/NeuroWeb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/NovaCustom.svg b/icons/chains/gradient/NovaCustom.svg new file mode 100644 index 000000000..a7ed22732 --- /dev/null +++ b/icons/chains/gradient/NovaCustom.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Parallel.svg b/icons/chains/gradient/Parallel.svg index 25c09946b..eb8f62175 100644 --- a/icons/chains/gradient/Parallel.svg +++ b/icons/chains/gradient/Parallel.svg @@ -1,11 +1,22 @@ - + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/ParallelHeiko.svg b/icons/chains/gradient/ParallelHeiko.svg index 693e09f4b..ee9533440 100644 --- a/icons/chains/gradient/ParallelHeiko.svg +++ b/icons/chains/gradient/ParallelHeiko.svg @@ -1,11 +1,12 @@ - + + + - + - diff --git a/icons/chains/gradient/Paseo_Testnet.svg b/icons/chains/gradient/Paseo_Testnet.svg new file mode 100644 index 000000000..ea765233b --- /dev/null +++ b/icons/chains/gradient/Paseo_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Pendulum.svg b/icons/chains/gradient/Pendulum.svg new file mode 100644 index 000000000..6c1f5b7b7 --- /dev/null +++ b/icons/chains/gradient/Pendulum.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polimec.svg b/icons/chains/gradient/Polimec.svg new file mode 100644 index 000000000..0c46450e5 --- /dev/null +++ b/icons/chains/gradient/Polimec.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polimec_Testnet.svg b/icons/chains/gradient/Polimec_Testnet.svg new file mode 100644 index 000000000..317d48ee4 --- /dev/null +++ b/icons/chains/gradient/Polimec_Testnet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polkadex_Parachain.svg b/icons/chains/gradient/Polkadex_Parachain.svg index 3b84eb857..9769cc9a0 100644 --- a/icons/chains/gradient/Polkadex_Parachain.svg +++ b/icons/chains/gradient/Polkadex_Parachain.svg @@ -1,15 +1,26 @@ - + - - - - + + + + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/Polkadot_Asset_Hub.svg b/icons/chains/gradient/Polkadot_Asset_Hub.svg new file mode 100644 index 000000000..3053cc38d --- /dev/null +++ b/icons/chains/gradient/Polkadot_Asset_Hub.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polkadot_Bridge_Hub.svg b/icons/chains/gradient/Polkadot_Bridge_Hub.svg new file mode 100644 index 000000000..f9136c266 --- /dev/null +++ b/icons/chains/gradient/Polkadot_Bridge_Hub.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polkadot_Collectives.svg b/icons/chains/gradient/Polkadot_Collectives.svg new file mode 100644 index 000000000..1c9abfe5a --- /dev/null +++ b/icons/chains/gradient/Polkadot_Collectives.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polygon.svg b/icons/chains/gradient/Polygon.svg new file mode 100644 index 000000000..ce7adfbb1 --- /dev/null +++ b/icons/chains/gradient/Polygon.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polymesh.svg b/icons/chains/gradient/Polymesh.svg new file mode 100644 index 000000000..4dee1b4cf --- /dev/null +++ b/icons/chains/gradient/Polymesh.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Polymesh_Testnet.svg b/icons/chains/gradient/Polymesh_Testnet.svg new file mode 100644 index 000000000..da999c88d --- /dev/null +++ b/icons/chains/gradient/Polymesh_Testnet.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/chains/gradient/Pontem.svg b/icons/chains/gradient/Pontem.svg index a7a152dbe..cf5db9ba7 100644 --- a/icons/chains/gradient/Pontem.svg +++ b/icons/chains/gradient/Pontem.svg @@ -1,12 +1,23 @@ - + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/PontemNox.svg b/icons/chains/gradient/PontemNox.svg index 91b9cd1a3..3685f1626 100644 --- a/icons/chains/gradient/PontemNox.svg +++ b/icons/chains/gradient/PontemNox.svg @@ -1,12 +1,13 @@ - + + + - + - diff --git a/icons/chains/gradient/Rococo_Testnet.svg b/icons/chains/gradient/Rococo_Testnet.svg new file mode 100644 index 000000000..b5cab55d4 --- /dev/null +++ b/icons/chains/gradient/Rococo_Testnet.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/SORA_Parachain.svg b/icons/chains/gradient/SORA_Parachain.svg index 1b2a76acf..d2262510d 100644 --- a/icons/chains/gradient/SORA_Parachain.svg +++ b/icons/chains/gradient/SORA_Parachain.svg @@ -1,12 +1,13 @@ - + + + - + - diff --git a/icons/chains/gradient/Singular_Testnet.svg b/icons/chains/gradient/Singular_Testnet.svg new file mode 100644 index 000000000..d9d578817 --- /dev/null +++ b/icons/chains/gradient/Singular_Testnet.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/chains/gradient/Statemine.svg b/icons/chains/gradient/Statemine.svg index 3cd516c57..1bfd7c810 100644 --- a/icons/chains/gradient/Statemine.svg +++ b/icons/chains/gradient/Statemine.svg @@ -1,11 +1,12 @@ - - + + + + - + - diff --git a/icons/chains/gradient/Statemint.svg b/icons/chains/gradient/Statemint.svg index 8fe75c7c7..9b0482515 100644 --- a/icons/chains/gradient/Statemint.svg +++ b/icons/chains/gradient/Statemint.svg @@ -1,11 +1,22 @@ - + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/SubGame.svg b/icons/chains/gradient/SubGame.svg index d4ef1e16c..829149d96 100644 --- a/icons/chains/gradient/SubGame.svg +++ b/icons/chains/gradient/SubGame.svg @@ -1,12 +1,23 @@ - - + + + + + + + + + + + - + - + + + diff --git a/icons/chains/gradient/SubGame_Gamma.svg b/icons/chains/gradient/SubGame_Gamma.svg index 39bc912dc..600bdd7fe 100644 --- a/icons/chains/gradient/SubGame_Gamma.svg +++ b/icons/chains/gradient/SubGame_Gamma.svg @@ -1,12 +1,13 @@ - - + + + + - + - diff --git a/icons/chains/gradient/Subsocial_Parachain.svg b/icons/chains/gradient/Subsocial_Parachain.svg index f99d6b2fb..447c96de1 100644 --- a/icons/chains/gradient/Subsocial_Parachain.svg +++ b/icons/chains/gradient/Subsocial_Parachain.svg @@ -1,11 +1,15 @@ - - + + + + - - - - + + + + + + diff --git a/icons/chains/gradient/Ternoa.svg b/icons/chains/gradient/Ternoa.svg new file mode 100644 index 000000000..14e8cec1c --- /dev/null +++ b/icons/chains/gradient/Ternoa.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Ternoa_Alphanet.svg b/icons/chains/gradient/Ternoa_Alphanet.svg new file mode 100644 index 000000000..063994d24 --- /dev/null +++ b/icons/chains/gradient/Ternoa_Alphanet.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Turing_Staging.svg b/icons/chains/gradient/Turing_Staging.svg new file mode 100644 index 000000000..34555e702 --- /dev/null +++ b/icons/chains/gradient/Turing_Staging.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/chains/gradient/Vara.svg b/icons/chains/gradient/Vara.svg new file mode 100644 index 000000000..b6c10aa33 --- /dev/null +++ b/icons/chains/gradient/Vara.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Vara_Testnet.svg b/icons/chains/gradient/Vara_Testnet.svg new file mode 100644 index 000000000..7e74a9611 --- /dev/null +++ b/icons/chains/gradient/Vara_Testnet.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/Watr.svg b/icons/chains/gradient/Watr.svg new file mode 100644 index 000000000..00cfa57a7 --- /dev/null +++ b/icons/chains/gradient/Watr.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/XX_network.svg b/icons/chains/gradient/XX_network.svg new file mode 100644 index 000000000..964c9d966 --- /dev/null +++ b/icons/chains/gradient/XX_network.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/krest.svg b/icons/chains/gradient/krest.svg new file mode 100644 index 000000000..dfad57837 --- /dev/null +++ b/icons/chains/gradient/krest.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/gradient/peaq.svg b/icons/chains/gradient/peaq.svg new file mode 100644 index 000000000..e6e85a036 --- /dev/null +++ b/icons/chains/gradient/peaq.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/icons/chains/white/Aleph_zero.svg b/icons/chains/white/Aleph_zero.svg index 09dcbb33f..b0861d09c 100644 --- a/icons/chains/white/Aleph_zero.svg +++ b/icons/chains/white/Aleph_zero.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/icons/chains/white/Amplitude.svg b/icons/chains/white/Amplitude.svg new file mode 100644 index 000000000..5720d4319 --- /dev/null +++ b/icons/chains/white/Amplitude.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/chains/white/EWT.svg b/icons/chains/white/EWT.svg new file mode 100644 index 000000000..b9945da84 --- /dev/null +++ b/icons/chains/white/EWT.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/chains/white/Geminis.svg b/icons/chains/white/Geminis.svg index 04e38a9e4..d555ed6f7 100644 --- a/icons/chains/white/Geminis.svg +++ b/icons/chains/white/Geminis.svg @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/icons/chains/white/Ternoa.svg b/icons/chains/white/Ternoa.svg new file mode 100644 index 000000000..290a5f774 --- /dev/null +++ b/icons/chains/white/Ternoa.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/chains/white/Tinkernet.svg b/icons/chains/white/Tinkernet.svg new file mode 100644 index 000000000..c92c62914 --- /dev/null +++ b/icons/chains/white/Tinkernet.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/chains/white/XX.svg b/icons/chains/white/XX.svg new file mode 100644 index 000000000..37632703b --- /dev/null +++ b/icons/chains/white/XX.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/dapps/color/ACE.svg b/icons/dapps/color/ACE.svg new file mode 100644 index 000000000..293dca9d8 --- /dev/null +++ b/icons/dapps/color/ACE.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/dapps/color/AwesomeAjunaAvatars.svg b/icons/dapps/color/AwesomeAjunaAvatars.svg new file mode 100644 index 000000000..1d6f8ae58 --- /dev/null +++ b/icons/dapps/color/AwesomeAjunaAvatars.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons/dapps/color/AzeroID.svg b/icons/dapps/color/AzeroID.svg new file mode 100644 index 000000000..19e1319e8 --- /dev/null +++ b/icons/dapps/color/AzeroID.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/dapps/color/Bit.Country.svg b/icons/dapps/color/Bit.Country.svg new file mode 100644 index 000000000..3120522f2 --- /dev/null +++ b/icons/dapps/color/Bit.Country.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/dapps/color/CapitalDEX.svg b/icons/dapps/color/CapitalDEX.svg new file mode 100644 index 000000000..0ae754aac --- /dev/null +++ b/icons/dapps/color/CapitalDEX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/DED.svg b/icons/dapps/color/DED.svg new file mode 100644 index 000000000..e8084adee --- /dev/null +++ b/icons/dapps/color/DED.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Damnedpiratessociety.svg b/icons/dapps/color/Damnedpiratessociety.svg index dd3e61b66..1d9cc36df 100644 --- a/icons/dapps/color/Damnedpiratessociety.svg +++ b/icons/dapps/color/Damnedpiratessociety.svg @@ -1,24 +1,25 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/DappRadar.svg b/icons/dapps/color/DappRadar.svg index a6bc5ca70..8317ce722 100644 --- a/icons/dapps/color/DappRadar.svg +++ b/icons/dapps/color/DappRadar.svg @@ -1,10 +1,3 @@ - - - - - - - - + diff --git a/icons/dapps/color/Darwinia.svg b/icons/dapps/color/Darwinia.svg new file mode 100644 index 000000000..fa2a701fb --- /dev/null +++ b/icons/dapps/color/Darwinia.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/DowntownMoonbeam.png b/icons/dapps/color/DowntownMoonbeam.png new file mode 100644 index 000000000..ccbbf7501 Binary files /dev/null and b/icons/dapps/color/DowntownMoonbeam.png differ diff --git a/icons/dapps/color/Equilibrium.svg b/icons/dapps/color/Equilibrium.svg new file mode 100644 index 000000000..812f313f6 --- /dev/null +++ b/icons/dapps/color/Equilibrium.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Evolutionland.png b/icons/dapps/color/Evolutionland.png new file mode 100644 index 000000000..c3f30c10d Binary files /dev/null and b/icons/dapps/color/Evolutionland.png differ diff --git a/icons/dapps/color/GM.svg b/icons/dapps/color/GM.svg new file mode 100644 index 000000000..7d8a20368 --- /dev/null +++ b/icons/dapps/color/GM.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/dapps/color/Genshiro.svg b/icons/dapps/color/Genshiro.svg new file mode 100644 index 000000000..7afe9b96d --- /dev/null +++ b/icons/dapps/color/Genshiro.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/dapps/color/Giant.svg b/icons/dapps/color/Giant.svg new file mode 100644 index 000000000..0e7801559 --- /dev/null +++ b/icons/dapps/color/Giant.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Grill.svg b/icons/dapps/color/Grill.svg new file mode 100644 index 000000000..9aa22592c --- /dev/null +++ b/icons/dapps/color/Grill.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Hydradx.svg b/icons/dapps/color/Hydradx.svg new file mode 100644 index 000000000..da7034862 --- /dev/null +++ b/icons/dapps/color/Hydradx.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/Interlay.svg b/icons/dapps/color/Interlay.svg new file mode 100644 index 000000000..a531ba73c --- /dev/null +++ b/icons/dapps/color/Interlay.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/InvArch.svg b/icons/dapps/color/InvArch.svg new file mode 100644 index 000000000..d9da7028c --- /dev/null +++ b/icons/dapps/color/InvArch.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/dapps/color/Kintsugi.svg b/icons/dapps/color/Kintsugi.svg new file mode 100644 index 000000000..13f6d664c --- /dev/null +++ b/icons/dapps/color/Kintsugi.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/KodaDot.svg b/icons/dapps/color/KodaDot.svg index b695903cd..cccb9e9b7 100644 --- a/icons/dapps/color/KodaDot.svg +++ b/icons/dapps/color/KodaDot.svg @@ -1,513 +1,15 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Litentry.svg b/icons/dapps/color/Litentry.svg new file mode 100644 index 000000000..3a1269498 --- /dev/null +++ b/icons/dapps/color/Litentry.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Litmus.svg b/icons/dapps/color/Litmus.svg new file mode 100644 index 000000000..853a217fb --- /dev/null +++ b/icons/dapps/color/Litmus.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/MangataX.svg b/icons/dapps/color/MangataX.svg new file mode 100644 index 000000000..64af88aa8 --- /dev/null +++ b/icons/dapps/color/MangataX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/MoonbeamCurve.svg b/icons/dapps/color/MoonbeamCurve.svg new file mode 100644 index 000000000..65c1c6835 --- /dev/null +++ b/icons/dapps/color/MoonbeamCurve.svg @@ -0,0 +1,1340 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Moonsama.svg b/icons/dapps/color/Moonsama.svg index 0668a9271..f9ed2881a 100644 --- a/icons/dapps/color/Moonsama.svg +++ b/icons/dapps/color/Moonsama.svg @@ -1,10 +1,11 @@ + - + - + diff --git a/icons/dapps/color/Moonwell.svg b/icons/dapps/color/Moonwell.svg index df3c643ca..6e4233fde 100644 --- a/icons/dapps/color/Moonwell.svg +++ b/icons/dapps/color/Moonwell.svg @@ -1,14 +1,4 @@ - - - - - - - - - - - - + + diff --git a/icons/dapps/color/Multix.svg b/icons/dapps/color/Multix.svg new file mode 100644 index 000000000..150c38ba4 --- /dev/null +++ b/icons/dapps/color/Multix.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/dapps/color/Nomad.svg b/icons/dapps/color/Nomad.svg new file mode 100644 index 000000000..d2ebb5a45 --- /dev/null +++ b/icons/dapps/color/Nomad.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/OmniLS.svg b/icons/dapps/color/OmniLS.svg new file mode 100644 index 000000000..72539f22e --- /dev/null +++ b/icons/dapps/color/OmniLS.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/dapps/color/Pablo.svg b/icons/dapps/color/Pablo.svg new file mode 100644 index 000000000..df50238cf --- /dev/null +++ b/icons/dapps/color/Pablo.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/dapps/color/Pioneer.svg b/icons/dapps/color/Pioneer.svg new file mode 100644 index 000000000..c43353152 --- /dev/null +++ b/icons/dapps/color/Pioneer.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/dapps/color/PolkaVerse.svg b/icons/dapps/color/PolkaVerse.svg new file mode 100644 index 000000000..08a23da2e --- /dev/null +++ b/icons/dapps/color/PolkaVerse.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/Polkadex.svg b/icons/dapps/color/Polkadex.svg new file mode 100644 index 000000000..599e23e0b --- /dev/null +++ b/icons/dapps/color/Polkadex.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/dapps/color/PrivaDEX.png b/icons/dapps/color/PrivaDEX.png new file mode 100644 index 000000000..73cb2f184 Binary files /dev/null and b/icons/dapps/color/PrivaDEX.png differ diff --git a/icons/dapps/color/Proof_of_Chaos.png b/icons/dapps/color/Proof_of_Chaos.png new file mode 100644 index 000000000..428bba7f9 Binary files /dev/null and b/icons/dapps/color/Proof_of_Chaos.png differ diff --git a/icons/dapps/color/Raresama.svg b/icons/dapps/color/Raresama.svg new file mode 100644 index 000000000..985731596 --- /dev/null +++ b/icons/dapps/color/Raresama.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/Singular_2.0.svg b/icons/dapps/color/Singular_2.0.svg index c2f112b52..e110fd97b 100644 --- a/icons/dapps/color/Singular_2.0.svg +++ b/icons/dapps/color/Singular_2.0.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/icons/dapps/color/SnekSwap.svg b/icons/dapps/color/SnekSwap.svg new file mode 100644 index 000000000..22a78dc8e --- /dev/null +++ b/icons/dapps/color/SnekSwap.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/dapps/color/SubBridge.svg b/icons/dapps/color/SubBridge.svg index c074005d2..6c70a042d 100644 --- a/icons/dapps/color/SubBridge.svg +++ b/icons/dapps/color/SubBridge.svg @@ -1,3 +1,4 @@ - + + diff --git a/icons/dapps/color/TensorWallet.svg b/icons/dapps/color/TensorWallet.svg new file mode 100644 index 000000000..2244b09e7 --- /dev/null +++ b/icons/dapps/color/TensorWallet.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/Ternoa.png b/icons/dapps/color/Ternoa.png new file mode 100644 index 000000000..1ba12f8e3 Binary files /dev/null and b/icons/dapps/color/Ternoa.png differ diff --git a/icons/dapps/color/Ternoa.svg b/icons/dapps/color/Ternoa.svg new file mode 100644 index 000000000..bfc2bcc7e --- /dev/null +++ b/icons/dapps/color/Ternoa.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons/dapps/color/Tinkernet.svg b/icons/dapps/color/Tinkernet.svg new file mode 100644 index 000000000..4791a49f5 --- /dev/null +++ b/icons/dapps/color/Tinkernet.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/dapps/color/TofuNFT.svg b/icons/dapps/color/TofuNFT.svg index 82302b3bc..bb335f8a4 100644 --- a/icons/dapps/color/TofuNFT.svg +++ b/icons/dapps/color/TofuNFT.svg @@ -1,3 +1,19 @@ - + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/Zeitgeist.svg b/icons/dapps/color/Zeitgeist.svg new file mode 100644 index 000000000..f9973f4ff --- /dev/null +++ b/icons/dapps/color/Zeitgeist.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/Zenlink.svg b/icons/dapps/color/Zenlink.svg new file mode 100644 index 000000000..e58e1727a --- /dev/null +++ b/icons/dapps/color/Zenlink.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/dapps/color/dotappstore.svg b/icons/dapps/color/dotappstore.svg new file mode 100644 index 000000000..a4044e6b8 --- /dev/null +++ b/icons/dapps/color/dotappstore.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/icons/dapps/color/gleev.svg b/icons/dapps/color/gleev.svg new file mode 100644 index 000000000..db03418bb --- /dev/null +++ b/icons/dapps/color/gleev.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/dapps/color/secret_stash.png b/icons/dapps/color/secret_stash.png new file mode 100644 index 000000000..1b70e3f6b Binary files /dev/null and b/icons/dapps/color/secret_stash.png differ diff --git a/icons/dapps/color/xx.svg b/icons/dapps/color/xx.svg new file mode 100644 index 000000000..330de481b --- /dev/null +++ b/icons/dapps/color/xx.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/tokens/white/2-Pool-Stbl.svg b/icons/tokens/white/2-Pool-Stbl.svg new file mode 100644 index 000000000..494ae0a07 --- /dev/null +++ b/icons/tokens/white/2-Pool-Stbl.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/tokens/white/2-Pool.svg b/icons/tokens/white/2-Pool.svg new file mode 100644 index 000000000..f1e934ef0 --- /dev/null +++ b/icons/tokens/white/2-Pool.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/tokens/white/4-Pool.svg b/icons/tokens/white/4-Pool.svg new file mode 100644 index 000000000..44705117b --- /dev/null +++ b/icons/tokens/white/4-Pool.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons/tokens/white/AJUN.svg b/icons/tokens/white/AJUN.svg new file mode 100644 index 000000000..3c242ac6b --- /dev/null +++ b/icons/tokens/white/AJUN.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/AUDD.svg b/icons/tokens/white/AUDD.svg new file mode 100644 index 000000000..fda319122 --- /dev/null +++ b/icons/tokens/white/AUDD.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/icons/tokens/white/AVAX.svg b/icons/tokens/white/AVAX.svg new file mode 100644 index 000000000..8ba9f9d41 --- /dev/null +++ b/icons/tokens/white/AVAX.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/AVL.svg b/icons/tokens/white/AVL.svg new file mode 100644 index 000000000..aefbb24d6 --- /dev/null +++ b/icons/tokens/white/AVL.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/AVT.svg b/icons/tokens/white/AVT.svg new file mode 100644 index 000000000..a4ff3ef7c --- /dev/null +++ b/icons/tokens/white/AVT.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/BEANS.svg b/icons/tokens/white/BEANS.svg new file mode 100644 index 000000000..d132018fc --- /dev/null +++ b/icons/tokens/white/BEANS.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/tokens/white/BEPRO.svg b/icons/tokens/white/BEPRO.svg new file mode 100644 index 000000000..65097a591 --- /dev/null +++ b/icons/tokens/white/BEPRO.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/BIT.svg b/icons/tokens/white/BIT.svg new file mode 100644 index 000000000..52003e2fa --- /dev/null +++ b/icons/tokens/white/BIT.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/BNB.svg b/icons/tokens/white/BNB.svg new file mode 100644 index 000000000..473b0f161 --- /dev/null +++ b/icons/tokens/white/BNB.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/BOBA.svg b/icons/tokens/white/BOBA.svg new file mode 100644 index 000000000..34f5b3700 --- /dev/null +++ b/icons/tokens/white/BOBA.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/tokens/white/BRL.svg b/icons/tokens/white/BRL.svg new file mode 100644 index 000000000..ac6f00665 --- /dev/null +++ b/icons/tokens/white/BRL.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/icons/tokens/white/BUSD.svg b/icons/tokens/white/BUSD.svg new file mode 100644 index 000000000..b7654ba08 --- /dev/null +++ b/icons/tokens/white/BUSD.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/CGT.svg b/icons/tokens/white/CGT.svg new file mode 100644 index 000000000..47bf38ab9 --- /dev/null +++ b/icons/tokens/white/CGT.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/CKTON.svg b/icons/tokens/white/CKTON.svg new file mode 100644 index 000000000..0f7629e59 --- /dev/null +++ b/icons/tokens/white/CKTON.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/CONV.svg b/icons/tokens/white/CONV.svg new file mode 100644 index 000000000..956b850da --- /dev/null +++ b/icons/tokens/white/CONV.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/CP.svg b/icons/tokens/white/CP.svg new file mode 100644 index 000000000..a97275a9f --- /dev/null +++ b/icons/tokens/white/CP.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/CRU.svg b/icons/tokens/white/CRU.svg new file mode 100644 index 000000000..64096c200 --- /dev/null +++ b/icons/tokens/white/CRU.svg @@ -0,0 +1,5 @@ + + + diff --git a/icons/tokens/white/CWS.svg b/icons/tokens/white/CWS.svg new file mode 100644 index 000000000..e0b1879f6 --- /dev/null +++ b/icons/tokens/white/CWS.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/tokens/white/DAI-Acala.svg b/icons/tokens/white/DAI-Acala.svg new file mode 100644 index 000000000..03ecd9be8 --- /dev/null +++ b/icons/tokens/white/DAI-Acala.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/DAI-Karura.svg b/icons/tokens/white/DAI-Karura.svg new file mode 100644 index 000000000..30f334289 --- /dev/null +++ b/icons/tokens/white/DAI-Karura.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/tokens/white/DAI-Moonbeam.svg b/icons/tokens/white/DAI-Moonbeam.svg new file mode 100644 index 000000000..725ab1fe7 --- /dev/null +++ b/icons/tokens/white/DAI-Moonbeam.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/DAI.svg b/icons/tokens/white/DAI.svg new file mode 100644 index 000000000..6dffb2916 --- /dev/null +++ b/icons/tokens/white/DAI.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/DED.svg b/icons/tokens/white/DED.svg new file mode 100644 index 000000000..179998f45 --- /dev/null +++ b/icons/tokens/white/DED.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/DOCK.svg b/icons/tokens/white/DOCK.svg new file mode 100644 index 000000000..694c7d851 --- /dev/null +++ b/icons/tokens/white/DOCK.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/tokens/white/DOT-iBTC.svg b/icons/tokens/white/DOT-iBTC.svg new file mode 100644 index 000000000..5d0315164 --- /dev/null +++ b/icons/tokens/white/DOT-iBTC.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/icons/tokens/white/DOTA.svg b/icons/tokens/white/DOTA.svg new file mode 100644 index 000000000..c2e2e3528 --- /dev/null +++ b/icons/tokens/white/DOTA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/EFT.svg b/icons/tokens/white/EFT.svg new file mode 100644 index 000000000..5254acb6a --- /dev/null +++ b/icons/tokens/white/EFT.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons/tokens/white/ENJ.svg b/icons/tokens/white/ENJ.svg new file mode 100644 index 000000000..73def117b --- /dev/null +++ b/icons/tokens/white/ENJ.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/EQ.svg b/icons/tokens/white/EQ.svg new file mode 100644 index 000000000..cb9c6883f --- /dev/null +++ b/icons/tokens/white/EQ.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/EUR.svg b/icons/tokens/white/EUR.svg new file mode 100644 index 000000000..159310914 --- /dev/null +++ b/icons/tokens/white/EUR.svg @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/icons/tokens/white/FRAX.svg b/icons/tokens/white/FRAX.svg new file mode 100644 index 000000000..2209e8b52 --- /dev/null +++ b/icons/tokens/white/FRAX.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/FREN.svg b/icons/tokens/white/FREN.svg new file mode 100644 index 000000000..68ba0ad04 --- /dev/null +++ b/icons/tokens/white/FREN.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/FRQCY.svg b/icons/tokens/white/FRQCY.svg new file mode 100644 index 000000000..ddf70b25d --- /dev/null +++ b/icons/tokens/white/FRQCY.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/tokens/white/FTM.svg b/icons/tokens/white/FTM.svg new file mode 100644 index 000000000..3ff9be5f8 --- /dev/null +++ b/icons/tokens/white/FTM.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/FXS.svg b/icons/tokens/white/FXS.svg new file mode 100644 index 000000000..d510d2aff --- /dev/null +++ b/icons/tokens/white/FXS.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/GLINT.svg b/icons/tokens/white/GLINT.svg new file mode 100644 index 000000000..61908383d --- /dev/null +++ b/icons/tokens/white/GLINT.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/GM.svg b/icons/tokens/white/GM.svg new file mode 100644 index 000000000..1d36c5908 --- /dev/null +++ b/icons/tokens/white/GM.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/GN.svg b/icons/tokens/white/GN.svg new file mode 100644 index 000000000..9224d8d4d --- /dev/null +++ b/icons/tokens/white/GN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/GOV2.svg b/icons/tokens/white/GOV2.svg new file mode 100644 index 000000000..6585b59da --- /dev/null +++ b/icons/tokens/white/GOV2.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/Giant.svg b/icons/tokens/white/Giant.svg new file mode 100644 index 000000000..702833d06 --- /dev/null +++ b/icons/tokens/white/Giant.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/HASH.svg b/icons/tokens/white/HASH.svg new file mode 100644 index 000000000..81d9878aa --- /dev/null +++ b/icons/tokens/white/HASH.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/HEX.svg b/icons/tokens/white/HEX.svg new file mode 100644 index 000000000..02c28a5a8 --- /dev/null +++ b/icons/tokens/white/HEX.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/HYDRO.svg b/icons/tokens/white/HYDRO.svg new file mode 100644 index 000000000..99b19ca01 --- /dev/null +++ b/icons/tokens/white/HYDRO.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/ICZ.svg b/icons/tokens/white/ICZ.svg new file mode 100644 index 000000000..b81184387 --- /dev/null +++ b/icons/tokens/white/ICZ.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/IDIA.svg b/icons/tokens/white/IDIA.svg new file mode 100644 index 000000000..7dadc6ba0 --- /dev/null +++ b/icons/tokens/white/IDIA.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/INTR-USDT.svg b/icons/tokens/white/INTR-USDT.svg new file mode 100644 index 000000000..b6cd8094d --- /dev/null +++ b/icons/tokens/white/INTR-USDT.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/tokens/white/JOY.svg b/icons/tokens/white/JOY.svg new file mode 100644 index 000000000..33fe629bf --- /dev/null +++ b/icons/tokens/white/JOY.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/tokens/white/JUR.svg b/icons/tokens/white/JUR.svg new file mode 100644 index 000000000..1733137db --- /dev/null +++ b/icons/tokens/white/JUR.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/KAPEX.svg b/icons/tokens/white/KAPEX.svg new file mode 100644 index 000000000..b1145167a --- /dev/null +++ b/icons/tokens/white/KAPEX.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/KBTC-USDT.svg b/icons/tokens/white/KBTC-USDT.svg new file mode 100644 index 000000000..d4239ac75 --- /dev/null +++ b/icons/tokens/white/KBTC-USDT.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/tokens/white/KREST.svg b/icons/tokens/white/KREST.svg new file mode 100644 index 000000000..845587555 --- /dev/null +++ b/icons/tokens/white/KREST.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/KSM-KBTC.svg b/icons/tokens/white/KSM-KBTC.svg new file mode 100644 index 000000000..133c4869c --- /dev/null +++ b/icons/tokens/white/KSM-KBTC.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/tokens/white/KSM-KINT.svg b/icons/tokens/white/KSM-KINT.svg new file mode 100644 index 000000000..5d296d140 --- /dev/null +++ b/icons/tokens/white/KSM-KINT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/KTON.svg b/icons/tokens/white/KTON.svg new file mode 100644 index 000000000..0f7629e59 --- /dev/null +++ b/icons/tokens/white/KTON.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/KUSD.svg b/icons/tokens/white/KUSD.svg index 914cd2b58..9655a0c1b 100644 --- a/icons/tokens/white/KUSD.svg +++ b/icons/tokens/white/KUSD.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/icons/tokens/white/KYL.svg b/icons/tokens/white/KYL.svg new file mode 100644 index 000000000..a4d094e66 --- /dev/null +++ b/icons/tokens/white/KYL.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/tokens/white/LAYR.svg b/icons/tokens/white/LAYR.svg new file mode 100644 index 000000000..88192b50d --- /dev/null +++ b/icons/tokens/white/LAYR.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons/tokens/white/LRNA.svg b/icons/tokens/white/LRNA.svg new file mode 100644 index 000000000..7fe070c5e --- /dev/null +++ b/icons/tokens/white/LRNA.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/MANTA.svg b/icons/tokens/white/MANTA.svg new file mode 100644 index 000000000..5d824e9be --- /dev/null +++ b/icons/tokens/white/MANTA.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/MATIC.svg b/icons/tokens/white/MATIC.svg new file mode 100644 index 000000000..72026cb22 --- /dev/null +++ b/icons/tokens/white/MATIC.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/MFAM.svg b/icons/tokens/white/MFAM.svg new file mode 100644 index 000000000..772bd8654 --- /dev/null +++ b/icons/tokens/white/MFAM.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/tokens/white/MITO.svg b/icons/tokens/white/MITO.svg new file mode 100644 index 000000000..99dc5542b --- /dev/null +++ b/icons/tokens/white/MITO.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/tokens/white/MOONSAMA.svg b/icons/tokens/white/MOONSAMA.svg new file mode 100644 index 000000000..472d4d587 --- /dev/null +++ b/icons/tokens/white/MOONSAMA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/MYRIA.svg b/icons/tokens/white/MYRIA.svg new file mode 100644 index 000000000..e812abcad --- /dev/null +++ b/icons/tokens/white/MYRIA.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/MYTH.svg b/icons/tokens/white/MYTH.svg new file mode 100644 index 000000000..1e9b7fa59 --- /dev/null +++ b/icons/tokens/white/MYTH.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/NEER.svg b/icons/tokens/white/NEER.svg new file mode 100644 index 000000000..8f77c7d29 --- /dev/null +++ b/icons/tokens/white/NEER.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/NEURO.svg b/icons/tokens/white/NEURO.svg new file mode 100644 index 000000000..64defa713 --- /dev/null +++ b/icons/tokens/white/NEURO.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/NGN.svg b/icons/tokens/white/NGN.svg new file mode 100644 index 000000000..759875be4 --- /dev/null +++ b/icons/tokens/white/NGN.svg @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/icons/tokens/white/NUUM.svg b/icons/tokens/white/NUUM.svg new file mode 100644 index 000000000..b856f7522 --- /dev/null +++ b/icons/tokens/white/NUUM.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/P3D.svg b/icons/tokens/white/P3D.svg new file mode 100644 index 000000000..532bfad79 --- /dev/null +++ b/icons/tokens/white/P3D.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/PEN.svg b/icons/tokens/white/PEN.svg new file mode 100644 index 000000000..b29530348 --- /dev/null +++ b/icons/tokens/white/PEN.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/PINK.svg b/icons/tokens/white/PINK.svg new file mode 100644 index 000000000..0c269925e --- /dev/null +++ b/icons/tokens/white/PINK.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/PLMC.svg b/icons/tokens/white/PLMC.svg new file mode 100644 index 000000000..84bc12600 --- /dev/null +++ b/icons/tokens/white/PLMC.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/tokens/white/POOP.svg b/icons/tokens/white/POOP.svg new file mode 100644 index 000000000..efb192730 --- /dev/null +++ b/icons/tokens/white/POOP.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/Phala.svg b/icons/tokens/white/Phala.svg index bd00bb693..05778ed42 100644 --- a/icons/tokens/white/Phala.svg +++ b/icons/tokens/white/Phala.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/icons/tokens/white/RIB.svg b/icons/tokens/white/RIB.svg new file mode 100644 index 000000000..0210afdbf --- /dev/null +++ b/icons/tokens/white/RIB.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/tokens/white/RING.svg b/icons/tokens/white/RING.svg new file mode 100644 index 000000000..8ce98b996 --- /dev/null +++ b/icons/tokens/white/RING.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/RMRK.svg b/icons/tokens/white/RMRK.svg index 38334a3e1..4d6395d55 100644 --- a/icons/tokens/white/RMRK.svg +++ b/icons/tokens/white/RMRK.svg @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/icons/tokens/white/SOLAR.svg b/icons/tokens/white/SOLAR.svg new file mode 100644 index 000000000..ffaa13737 --- /dev/null +++ b/icons/tokens/white/SOLAR.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/tokens/white/SPACE.svg b/icons/tokens/white/SPACE.svg new file mode 100644 index 000000000..5d8f68711 --- /dev/null +++ b/icons/tokens/white/SPACE.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/STELLA.svg b/icons/tokens/white/STELLA.svg new file mode 100644 index 000000000..0d1874fa5 --- /dev/null +++ b/icons/tokens/white/STELLA.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/STINK.svg b/icons/tokens/white/STINK.svg new file mode 100644 index 000000000..1e2de3e43 --- /dev/null +++ b/icons/tokens/white/STINK.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/TAO.svg b/icons/tokens/white/TAO.svg new file mode 100644 index 000000000..5c17f659a --- /dev/null +++ b/icons/tokens/white/TAO.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/tokens/white/TAO_bittensor.svg b/icons/tokens/white/TAO_bittensor.svg new file mode 100644 index 000000000..97a8af213 --- /dev/null +++ b/icons/tokens/white/TAO_bittensor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/TRAC.svg b/icons/tokens/white/TRAC.svg new file mode 100644 index 000000000..dae327bcd --- /dev/null +++ b/icons/tokens/white/TRAC.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/TZS.svg b/icons/tokens/white/TZS.svg new file mode 100644 index 000000000..cb5975e2a --- /dev/null +++ b/icons/tokens/white/TZS.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/icons/tokens/white/UNI.svg b/icons/tokens/white/UNI.svg new file mode 100644 index 000000000..3d4713dc8 --- /dev/null +++ b/icons/tokens/white/UNI.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons/tokens/white/USDC-Karura.svg b/icons/tokens/white/USDC-Karura.svg new file mode 100644 index 000000000..745903686 --- /dev/null +++ b/icons/tokens/white/USDC-Karura.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/tokens/white/USDC-Moonbeam.svg b/icons/tokens/white/USDC-Moonbeam.svg new file mode 100644 index 000000000..85cbb53a8 --- /dev/null +++ b/icons/tokens/white/USDC-Moonbeam.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons/tokens/white/USDC.svg b/icons/tokens/white/USDC.svg new file mode 100644 index 000000000..c64cf850e --- /dev/null +++ b/icons/tokens/white/USDC.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/USDT-Moonbeam.svg b/icons/tokens/white/USDT-Moonbeam.svg new file mode 100644 index 000000000..c6e15c68f --- /dev/null +++ b/icons/tokens/white/USDT-Moonbeam.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/tokens/white/VARA.svg b/icons/tokens/white/VARA.svg new file mode 100644 index 000000000..90730687c --- /dev/null +++ b/icons/tokens/white/VARA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/VARCH.svg b/icons/tokens/white/VARCH.svg new file mode 100644 index 000000000..f366cffa0 --- /dev/null +++ b/icons/tokens/white/VARCH.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/WATR.svg b/icons/tokens/white/WATR.svg new file mode 100644 index 000000000..6c00fe018 --- /dev/null +++ b/icons/tokens/white/WATR.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/WBTC.svg b/icons/tokens/white/WBTC.svg new file mode 100644 index 000000000..246602997 --- /dev/null +++ b/icons/tokens/white/WBTC.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/tokens/white/WELL.svg b/icons/tokens/white/WELL.svg new file mode 100644 index 000000000..424e0fed9 --- /dev/null +++ b/icons/tokens/white/WELL.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/WETH-worm.svg b/icons/tokens/white/WETH-worm.svg new file mode 100644 index 000000000..fa26ee633 --- /dev/null +++ b/icons/tokens/white/WETH-worm.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/tokens/white/XLM.svg b/icons/tokens/white/XLM.svg new file mode 100644 index 000000000..dfd233676 --- /dev/null +++ b/icons/tokens/white/XLM.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/icons/tokens/white/XX.svg b/icons/tokens/white/XX.svg new file mode 100644 index 000000000..2d7469159 --- /dev/null +++ b/icons/tokens/white/XX.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/ZLK.svg b/icons/tokens/white/ZLK.svg index 87d715951..1a0c90dcc 100644 --- a/icons/tokens/white/ZLK.svg +++ b/icons/tokens/white/ZLK.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/icons/tokens/white/aSEED.svg b/icons/tokens/white/aSEED.svg new file mode 100644 index 000000000..4df2f37d6 --- /dev/null +++ b/icons/tokens/white/aSEED.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/cDOT.svg b/icons/tokens/white/cDOT.svg new file mode 100644 index 000000000..ad40e27f6 --- /dev/null +++ b/icons/tokens/white/cDOT.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/tokens/white/iBTC-USDT.svg b/icons/tokens/white/iBTC-USDT.svg new file mode 100644 index 000000000..fcdf48727 --- /dev/null +++ b/icons/tokens/white/iBTC-USDT.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/tokens/white/mbXEN.svg b/icons/tokens/white/mbXEN.svg new file mode 100644 index 000000000..092c60d14 --- /dev/null +++ b/icons/tokens/white/mbXEN.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/sDOT.svg b/icons/tokens/white/sDOT.svg index b05274d16..9a2470480 100644 --- a/icons/tokens/white/sDOT.svg +++ b/icons/tokens/white/sDOT.svg @@ -1,10 +1,8 @@ - - + - - - + + diff --git a/icons/tokens/white/stDOT.svg b/icons/tokens/white/stDOT.svg new file mode 100644 index 000000000..cb7eb6c43 --- /dev/null +++ b/icons/tokens/white/stDOT.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/icons/tokens/white/stETH.svg b/icons/tokens/white/stETH.svg new file mode 100644 index 000000000..eb48cfb8b --- /dev/null +++ b/icons/tokens/white/stETH.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/tokens/white/vASTR.svg b/icons/tokens/white/vASTR.svg new file mode 100644 index 000000000..d3e074b0d --- /dev/null +++ b/icons/tokens/white/vASTR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/vBNC.svg b/icons/tokens/white/vBNC.svg new file mode 100644 index 000000000..31e6693ca --- /dev/null +++ b/icons/tokens/white/vBNC.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/vDOT.svg b/icons/tokens/white/vDOT.svg new file mode 100644 index 000000000..db9f2b9ed --- /dev/null +++ b/icons/tokens/white/vDOT.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/vFIL.svg b/icons/tokens/white/vFIL.svg new file mode 100644 index 000000000..f677f58f7 --- /dev/null +++ b/icons/tokens/white/vFIL.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/vGLMR.svg b/icons/tokens/white/vGLMR.svg new file mode 100644 index 000000000..db51d08ff --- /dev/null +++ b/icons/tokens/white/vGLMR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/vMANTA.svg b/icons/tokens/white/vMANTA.svg new file mode 100644 index 000000000..e4cf4cf56 --- /dev/null +++ b/icons/tokens/white/vMANTA.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/vMOVR.svg b/icons/tokens/white/vMOVR.svg new file mode 100644 index 000000000..bde352e97 --- /dev/null +++ b/icons/tokens/white/vMOVR.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/tokens/white/vsDOT.svg b/icons/tokens/white/vsDOT.svg new file mode 100644 index 000000000..cba897b95 --- /dev/null +++ b/icons/tokens/white/vsDOT.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/makefile b/makefile new file mode 100644 index 000000000..47a1b60a6 --- /dev/null +++ b/makefile @@ -0,0 +1,84 @@ +# Variables +PYTHON := python +PYTHON_VERSION := 3.11 +VENV ?= .venv + +RE_RUNS = 2 +RE_RUN_DELAY = 5 +ALLURE_DIR = allure-results +TEST_RUN = $(VENV)/bin/python -m pytest --rootdir . --alluredir=$(ALLURE_DIR) -n auto -v --reruns $(RE_RUNS) --reruns-delay $(RE_RUN_DELAY) +TEST_RUN_JUNIT = $(VENV)/bin/python -m pytest --rootdir . --junit-xml=test-results.xml -n auto -v --reruns $(RE_RUNS) --reruns-delay $(RE_RUN_DELAY) + +CHAINS_FILES=\ + chains + +# Targets +.PHONY: test clean lint init venv requirements generate_network_list test-all + +clean: + rm -rf *.pyc __pycache__/ **/__pycache__/ + +init: venv .create-venv requirements .install-pre-commit + +generate_type_files: + $(VENV)/bin/python ./scripts/create_type_file.py prod + +generate_network_list: + $(VENV)/bin/python ./scripts/generate_network_list.py + +generate_dapp_list: + $(VENV)/bin/python ./scripts/generate_dapps_list.py + +generate_test_file: + $(VENV)/bin/python ./scripts/update_test_data.py + +venv: + $(PYTHON) -m venv .venv + +.create-venv: + test -d $(VENV) || python$(PYTHON_VERSION) -m venv $(VENV) + $(VENV)/bin/python -m pip install --upgrade pip + $(VENV)/bin/python -m pip install poetry + +.install-pre-commit: + $(VENV)/bin/poetry run pre-commit install + +requirements: + $(VENV)/bin/poetry install + . .venv/bin/activate + +test-all: test-nodes-availability test-networks-precision test-network-chain-id test-network-prefix test-eth-availability test-new-assets + +test-core: + CHAINS_JSON_PATH=$(CHAINS_JSON_PATH) $(TEST_RUN_JUNIT) -m core + +test-nodes-availability: + $(TEST_RUN) "./tests/test_nodes_availability.py" + +test-networks-precision: + $(TEST_RUN) "./tests/test_network_parameters.py::TestPrecision" + +test-network-chain-id: + $(TEST_RUN) "./tests/test_network_parameters.py::TestChainId" + +test-network-prefix: + $(TEST_RUN) "./tests/test_network_parameters.py::TestNetworkPrefix" + +test-eth-availability: + $(TEST_RUN) "./tests/test_eth_nodes_availability.py" + +test-new-assets: + $(TEST_RUN) "./tests/test_check_new_assets.py" + +allure: + allure serve $(ALLURE_DIR) + +pr-comment-creation: + echo "## Changes for $(PR_ENV)" >> $(PR_FILE_NAME) + XCM_PATH=$(XCM_PATH) CHAINS_PATH=$(CHAINS_PATH) $(VENV)/bin/python scripts/print_xcm_changes.py $(PR_ENV) >> $(PR_FILE_NAME) + +check-chains-file: + $(VENV)/bin/pre-commit run --files chains/**/*.json + +update-xcm-to-prod: + $(VENV)/bin/python xcm/update_to_prod.py diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 000000000..c42d9df99 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,2882 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.1" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e1f80197f8b0b846a8d5cf7b7ec6084493950d0882cc5537fb7b96a69e3c8590"}, + {file = "aiohttp-3.9.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c72444d17777865734aa1a4d167794c34b63e5883abb90356a0364a28904e6c0"}, + {file = "aiohttp-3.9.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9b05d5cbe9dafcdc733262c3a99ccf63d2f7ce02543620d2bd8db4d4f7a22f83"}, + {file = "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c4fa235d534b3547184831c624c0b7c1e262cd1de847d95085ec94c16fddcd5"}, + {file = "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:289ba9ae8e88d0ba16062ecf02dd730b34186ea3b1e7489046fc338bdc3361c4"}, + {file = "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bff7e2811814fa2271be95ab6e84c9436d027a0e59665de60edf44e529a42c1f"}, + {file = "aiohttp-3.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81b77f868814346662c96ab36b875d7814ebf82340d3284a31681085c051320f"}, + {file = "aiohttp-3.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b9c7426923bb7bd66d409da46c41e3fb40f5caf679da624439b9eba92043fa6"}, + {file = "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8d44e7bf06b0c0a70a20f9100af9fcfd7f6d9d3913e37754c12d424179b4e48f"}, + {file = "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:22698f01ff5653fe66d16ffb7658f582a0ac084d7da1323e39fd9eab326a1f26"}, + {file = "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ca7ca5abfbfe8d39e653870fbe8d7710be7a857f8a8386fc9de1aae2e02ce7e4"}, + {file = "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:8d7f98fde213f74561be1d6d3fa353656197f75d4edfbb3d94c9eb9b0fc47f5d"}, + {file = "aiohttp-3.9.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5216b6082c624b55cfe79af5d538e499cd5f5b976820eac31951fb4325974501"}, + {file = "aiohttp-3.9.1-cp310-cp310-win32.whl", hash = "sha256:0e7ba7ff228c0d9a2cd66194e90f2bca6e0abca810b786901a569c0de082f489"}, + {file = "aiohttp-3.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:c7e939f1ae428a86e4abbb9a7c4732bf4706048818dfd979e5e2839ce0159f23"}, + {file = "aiohttp-3.9.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:df9cf74b9bc03d586fc53ba470828d7b77ce51b0582d1d0b5b2fb673c0baa32d"}, + {file = "aiohttp-3.9.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ecca113f19d5e74048c001934045a2b9368d77b0b17691d905af18bd1c21275e"}, + {file = "aiohttp-3.9.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8cef8710fb849d97c533f259103f09bac167a008d7131d7b2b0e3a33269185c0"}, + {file = "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bea94403a21eb94c93386d559bce297381609153e418a3ffc7d6bf772f59cc35"}, + {file = "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91c742ca59045dce7ba76cab6e223e41d2c70d79e82c284a96411f8645e2afff"}, + {file = "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6c93b7c2e52061f0925c3382d5cb8980e40f91c989563d3d32ca280069fd6a87"}, + {file = "aiohttp-3.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee2527134f95e106cc1653e9ac78846f3a2ec1004cf20ef4e02038035a74544d"}, + {file = "aiohttp-3.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:11ff168d752cb41e8492817e10fb4f85828f6a0142b9726a30c27c35a1835f01"}, + {file = "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b8c3a67eb87394386847d188996920f33b01b32155f0a94f36ca0e0c635bf3e3"}, + {file = "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c7b5d5d64e2a14e35a9240b33b89389e0035e6de8dbb7ffa50d10d8b65c57449"}, + {file = "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:69985d50a2b6f709412d944ffb2e97d0be154ea90600b7a921f95a87d6f108a2"}, + {file = "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:c9110c06eaaac7e1f5562caf481f18ccf8f6fdf4c3323feab28a93d34cc646bd"}, + {file = "aiohttp-3.9.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d737e69d193dac7296365a6dcb73bbbf53bb760ab25a3727716bbd42022e8d7a"}, + {file = "aiohttp-3.9.1-cp311-cp311-win32.whl", hash = "sha256:4ee8caa925aebc1e64e98432d78ea8de67b2272252b0a931d2ac3bd876ad5544"}, + {file = "aiohttp-3.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:a34086c5cc285be878622e0a6ab897a986a6e8bf5b67ecb377015f06ed316587"}, + {file = "aiohttp-3.9.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f800164276eec54e0af5c99feb9494c295118fc10a11b997bbb1348ba1a52065"}, + {file = "aiohttp-3.9.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:500f1c59906cd142d452074f3811614be04819a38ae2b3239a48b82649c08821"}, + {file = "aiohttp-3.9.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0b0a6a36ed7e164c6df1e18ee47afbd1990ce47cb428739d6c99aaabfaf1b3af"}, + {file = "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69da0f3ed3496808e8cbc5123a866c41c12c15baaaead96d256477edf168eb57"}, + {file = "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:176df045597e674fa950bf5ae536be85699e04cea68fa3a616cf75e413737eb5"}, + {file = "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b796b44111f0cab6bbf66214186e44734b5baab949cb5fb56154142a92989aeb"}, + {file = "aiohttp-3.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f27fdaadce22f2ef950fc10dcdf8048407c3b42b73779e48a4e76b3c35bca26c"}, + {file = "aiohttp-3.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bcb6532b9814ea7c5a6a3299747c49de30e84472fa72821b07f5a9818bce0f66"}, + {file = "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:54631fb69a6e44b2ba522f7c22a6fb2667a02fd97d636048478db2fd8c4e98fe"}, + {file = "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:4b4c452d0190c5a820d3f5c0f3cd8a28ace48c54053e24da9d6041bf81113183"}, + {file = "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:cae4c0c2ca800c793cae07ef3d40794625471040a87e1ba392039639ad61ab5b"}, + {file = "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:565760d6812b8d78d416c3c7cfdf5362fbe0d0d25b82fed75d0d29e18d7fc30f"}, + {file = "aiohttp-3.9.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54311eb54f3a0c45efb9ed0d0a8f43d1bc6060d773f6973efd90037a51cd0a3f"}, + {file = "aiohttp-3.9.1-cp312-cp312-win32.whl", hash = "sha256:85c3e3c9cb1d480e0b9a64c658cd66b3cfb8e721636ab8b0e746e2d79a7a9eed"}, + {file = "aiohttp-3.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:11cb254e397a82efb1805d12561e80124928e04e9c4483587ce7390b3866d213"}, + {file = "aiohttp-3.9.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8a22a34bc594d9d24621091d1b91511001a7eea91d6652ea495ce06e27381f70"}, + {file = "aiohttp-3.9.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:598db66eaf2e04aa0c8900a63b0101fdc5e6b8a7ddd805c56d86efb54eb66672"}, + {file = "aiohttp-3.9.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2c9376e2b09895c8ca8b95362283365eb5c03bdc8428ade80a864160605715f1"}, + {file = "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41473de252e1797c2d2293804e389a6d6986ef37cbb4a25208de537ae32141dd"}, + {file = "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9c5857612c9813796960c00767645cb5da815af16dafb32d70c72a8390bbf690"}, + {file = "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ffcd828e37dc219a72c9012ec44ad2e7e3066bec6ff3aaa19e7d435dbf4032ca"}, + {file = "aiohttp-3.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:219a16763dc0294842188ac8a12262b5671817042b35d45e44fd0a697d8c8361"}, + {file = "aiohttp-3.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f694dc8a6a3112059258a725a4ebe9acac5fe62f11c77ac4dcf896edfa78ca28"}, + {file = "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bcc0ea8d5b74a41b621ad4a13d96c36079c81628ccc0b30cfb1603e3dfa3a014"}, + {file = "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:90ec72d231169b4b8d6085be13023ece8fa9b1bb495e4398d847e25218e0f431"}, + {file = "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:cf2a0ac0615842b849f40c4d7f304986a242f1e68286dbf3bd7a835e4f83acfd"}, + {file = "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:0e49b08eafa4f5707ecfb321ab9592717a319e37938e301d462f79b4e860c32a"}, + {file = "aiohttp-3.9.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2c59e0076ea31c08553e868cec02d22191c086f00b44610f8ab7363a11a5d9d8"}, + {file = "aiohttp-3.9.1-cp38-cp38-win32.whl", hash = "sha256:4831df72b053b1eed31eb00a2e1aff6896fb4485301d4ccb208cac264b648db4"}, + {file = "aiohttp-3.9.1-cp38-cp38-win_amd64.whl", hash = "sha256:3135713c5562731ee18f58d3ad1bf41e1d8883eb68b363f2ffde5b2ea4b84cc7"}, + {file = "aiohttp-3.9.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:cfeadf42840c1e870dc2042a232a8748e75a36b52d78968cda6736de55582766"}, + {file = "aiohttp-3.9.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:70907533db712f7aa791effb38efa96f044ce3d4e850e2d7691abd759f4f0ae0"}, + {file = "aiohttp-3.9.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cdefe289681507187e375a5064c7599f52c40343a8701761c802c1853a504558"}, + {file = "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7481f581251bb5558ba9f635db70908819caa221fc79ee52a7f58392778c636"}, + {file = "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:49f0c1b3c2842556e5de35f122fc0f0b721334ceb6e78c3719693364d4af8499"}, + {file = "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d406b01a9f5a7e232d1b0d161b40c05275ffbcbd772dc18c1d5a570961a1ca4"}, + {file = "aiohttp-3.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d8e4450e7fe24d86e86b23cc209e0023177b6d59502e33807b732d2deb6975f"}, + {file = "aiohttp-3.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c0266cd6f005e99f3f51e583012de2778e65af6b73860038b968a0a8888487a"}, + {file = "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab221850108a4a063c5b8a70f00dd7a1975e5a1713f87f4ab26a46e5feac5a0e"}, + {file = "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c88a15f272a0ad3d7773cf3a37cc7b7d077cbfc8e331675cf1346e849d97a4e5"}, + {file = "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:237533179d9747080bcaad4d02083ce295c0d2eab3e9e8ce103411a4312991a0"}, + {file = "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:02ab6006ec3c3463b528374c4cdce86434e7b89ad355e7bf29e2f16b46c7dd6f"}, + {file = "aiohttp-3.9.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04fa38875e53eb7e354ece1607b1d2fdee2d175ea4e4d745f6ec9f751fe20c7c"}, + {file = "aiohttp-3.9.1-cp39-cp39-win32.whl", hash = "sha256:82eefaf1a996060602f3cc1112d93ba8b201dbf5d8fd9611227de2003dddb3b7"}, + {file = "aiohttp-3.9.1-cp39-cp39-win_amd64.whl", hash = "sha256:9b05d33ff8e6b269e30a7957bd3244ffbce2a7a35a81b81c382629b80af1a8bf"}, + {file = "aiohttp-3.9.1.tar.gz", hash = "sha256:8fc49a87ac269d4529da45871e2ffb6874e87779c3d0e2ccd813c0899221239d"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +async-timeout = {version = ">=4.0,<5.0", markers = "python_version < \"3.11\""} +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "allure-pytest" +version = "2.12.0" +description = "Allure pytest integration" +optional = false +python-versions = "*" +files = [ + {file = "allure-pytest-2.12.0.tar.gz", hash = "sha256:85b73b1dbe9908ba4f84b80118a93e1049c02dd593209260d8c1c950cf286f6c"}, + {file = "allure_pytest-2.12.0-py3-none-any.whl", hash = "sha256:1a10b2b78334443097d7be890a53c991e857e13d14781377c2f8d11eb4b5582c"}, +] + +[package.dependencies] +allure-python-commons = "2.12.0" +pytest = ">=4.5.0" +six = ">=1.9.0" + +[[package]] +name = "allure-python-commons" +version = "2.12.0" +description = "Common module for integrate allure with python-based frameworks" +optional = false +python-versions = ">=3.5" +files = [ + {file = "allure-python-commons-2.12.0.tar.gz", hash = "sha256:d5c362dd01167f086331822e9b1912d4e6fd6cbc2d1a006dd048e77e82a7ae73"}, + {file = "allure_python_commons-2.12.0-py3-none-any.whl", hash = "sha256:f968c69d4e656bcf274f2ef6578f24afcaab663f8814e238d0ab2b8bec2e0134"}, +] + +[package.dependencies] +attrs = ">=16.0.0" +pluggy = ">=0.4.0" +six = ">=1.9.0" + +[[package]] +name = "async-timeout" +version = "4.0.3" +description = "Timeout context manager for asyncio programs" +optional = false +python-versions = ">=3.7" +files = [ + {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, + {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, +] + +[[package]] +name = "attrs" +version = "23.2.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, + {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] +tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] + +[[package]] +name = "base58" +version = "2.1.1" +description = "Base58 and Base58Check implementation." +optional = false +python-versions = ">=3.5" +files = [ + {file = "base58-2.1.1-py3-none-any.whl", hash = "sha256:11a36f4d3ce51dfc1043f3218591ac4eb1ceb172919cebe05b52a5bcc8d245c2"}, + {file = "base58-2.1.1.tar.gz", hash = "sha256:c5d0cb3f5b6e81e8e35da5754388ddcc6d0d14b6c6a132cb93d69ed580a7278c"}, +] + +[package.extras] +tests = ["PyHamcrest (>=2.0.2)", "mypy", "pytest (>=4.6)", "pytest-benchmark", "pytest-cov", "pytest-flake8"] + +[[package]] +name = "bitarray" +version = "2.9.2" +description = "efficient arrays of booleans -- C extension" +optional = false +python-versions = "*" +files = [ + {file = "bitarray-2.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:917905de565d9576eb20f53c797c15ba88b9f4f19728acabec8d01eee1d3756a"}, + {file = "bitarray-2.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b35bfcb08b7693ab4bf9059111a6e9f14e07d57ac93cd967c420db58ab9b71e1"}, + {file = "bitarray-2.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ea1923d2e7880f9e1959e035da661767b5a2e16a45dfd57d6aa831e8b65ee1bf"}, + {file = "bitarray-2.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e0b63a565e8a311cc8348ff1262d5784df0f79d64031d546411afd5dd7ef67d"}, + {file = "bitarray-2.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cf0620da2b81946d28c0b16f3e3704d38e9837d85ee4f0652816e2609aaa4fed"}, + {file = "bitarray-2.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79a9b8b05f2876c7195a2b698c47528e86a73c61ea203394ff8e7a4434bda5c8"}, + {file = "bitarray-2.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:345c76b349ff145549652436235c5532e5bfe9db690db6f0a6ad301c62b9ef21"}, + {file = "bitarray-2.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4e2936f090bf3f4d1771f44f9077ebccdbc0415d2b598d51a969afcb519df505"}, + {file = "bitarray-2.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:f9346e98fc2abcef90b942973087e2462af6d3e3710e82938078d3493f7fef52"}, + {file = "bitarray-2.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e6ec283d4741befb86e8c3ea2e9ac1d17416c956d392107e45263e736954b1f7"}, + {file = "bitarray-2.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:962892646599529917ef26266091e4cb3077c88b93c3833a909d68dcc971c4e3"}, + {file = "bitarray-2.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e8da5355d7d75a52df5b84750989e34e39919ec7e59fafc4c104cc1607ab2d31"}, + {file = "bitarray-2.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:603e7d640e54ad764d2b4da6b61e126259af84f253a20f512dd10689566e5478"}, + {file = "bitarray-2.9.2-cp310-cp310-win32.whl", hash = "sha256:f00079f8e69d75c2a417de7961a77612bb77ef46c09bc74607d86de4740771ef"}, + {file = "bitarray-2.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:1bb33673e7f7190a65f0a940c1ef63266abdb391f4a3e544a47542d40a81f536"}, + {file = "bitarray-2.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fe71fd4b76380c2772f96f1e53a524da7063645d647a4fcd3b651bdd80ca0f2e"}, + {file = "bitarray-2.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d527172919cdea1e13994a66d9708a80c3d33dedcf2f0548e4925e600fef3a3a"}, + {file = "bitarray-2.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:052c5073bdcaa9dd10628d99d37a2f33ec09364b86dd1f6281e2d9f8d3db3060"}, + {file = "bitarray-2.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e064caa55a6ed493aca1eda06f8b3f689778bc780a75e6ad7724642ba5dc62f7"}, + {file = "bitarray-2.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:508069a04f658210fdeee85a7a0ca84db4bcc110cbb1d21f692caa13210f24a7"}, + {file = "bitarray-2.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4da73ebd537d75fa7bccfc2228fcaedea0803f21dd9d0bf0d3b67fef3c4af294"}, + {file = "bitarray-2.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cb378eaa65cd43098f11ff5d27e48ee3b956d2c00d2d6b5bfc2a09fe183be47"}, + {file = "bitarray-2.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d14c790b91f6cbcd9b718f88ed737c78939980c69ac8c7f03dd7e60040c12951"}, + {file = "bitarray-2.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7eea9318293bc0ea6447e9ebfba600a62f3428bea7e9c6d42170ae4f481dbab3"}, + {file = "bitarray-2.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b76ffec27c7450b8a334f967366a9ebadaea66ee43f5b530c12861b1a991f503"}, + {file = "bitarray-2.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:76b76a07d4ee611405045c6950a1e24c4362b6b44808d4ad6eea75e0dbc59af4"}, + {file = "bitarray-2.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:c7d16beeaaab15b075990cd26963d6b5b22e8c5becd131781514a00b8bdd04bd"}, + {file = "bitarray-2.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60df43e868a615c7e15117a1e1c2e5e11f48f6457280eba6ddf8fbefbec7da99"}, + {file = "bitarray-2.9.2-cp311-cp311-win32.whl", hash = "sha256:e788608ed7767b7b3bbde6d49058bccdf94df0de9ca75d13aa99020cc7e68095"}, + {file = "bitarray-2.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:a23397da092ef0a8cfe729571da64c2fc30ac18243caa82ac7c4f965087506ff"}, + {file = "bitarray-2.9.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:90e3a281ffe3897991091b7c46fca38c2675bfd4399ffe79dfeded6c52715436"}, + {file = "bitarray-2.9.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:bed637b674db5e6c8a97a4a321e3e4d73e72d50b5c6b29950008a93069cc64cd"}, + {file = "bitarray-2.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e49066d251dbbe4e6e3a5c3937d85b589e40e2669ad0eef41a00f82ec17d844b"}, + {file = "bitarray-2.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c4344e96642e2211fb3a50558feff682c31563a4c64529a931769d40832ca79"}, + {file = "bitarray-2.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aeb60962ec4813c539a59fbd4f383509c7222b62c3fb1faa76b54943a613e33a"}, + {file = "bitarray-2.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ed0f7982f10581bb16553719e5e8f933e003f5b22f7d25a68bdb30fac630a6ff"}, + {file = "bitarray-2.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c71d1cabdeee0cdda4669168618f0e46b7dace207b29da7b63aaa1adc2b54081"}, + {file = "bitarray-2.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b0ef2d0a6f1502d38d911d25609b44c6cc27bee0a4363dd295df78b075041b60"}, + {file = "bitarray-2.9.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6f71d92f533770fb027388b35b6e11988ab89242b883f48a6fe7202d238c61f8"}, + {file = "bitarray-2.9.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ba0734aa300757c924f3faf8148e1b8c247176a0ac8e16aefdf9c1eb19e868f7"}, + {file = "bitarray-2.9.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:d91406f413ccbf4af6ab5ae7bc78f772a95609f9ddd14123db36ef8c37116d95"}, + {file = "bitarray-2.9.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:87abb7f80c0a042f3fe8e5264da1a2756267450bb602110d5327b8eaff7682e7"}, + {file = "bitarray-2.9.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4b558ce85579b51a2e38703877d1e93b7728a7af664dd45a34e833534f0b755d"}, + {file = "bitarray-2.9.2-cp312-cp312-win32.whl", hash = "sha256:dac2399ee2889fbdd3472bfc2ede74c34cceb1ccf29a339964281a16eb1d3188"}, + {file = "bitarray-2.9.2-cp312-cp312-win_amd64.whl", hash = "sha256:48a30d718d1a6dfc22a49547450107abe8f4afdf2abdcbe76eb9ed88edc49498"}, + {file = "bitarray-2.9.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:2c6be1b651fad8f3adb7a5aa12c65b612cd9b89530969af941844ae680f7d981"}, + {file = "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5b399ae6ab975257ec359f03b48fc00b1c1cd109471e41903548469b8feae5c"}, + {file = "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0b3543c8a1cb286ad105f11c25d8d0f712f41c5c55f90be39f0e5a1376c7d0b0"}, + {file = "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:03adaacb79e2fb8f483ab3a67665eec53bb3fd0cd5dbd7358741aef124688db3"}, + {file = "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ae5b0657380d2581e13e46864d147a52c1e2bbac9f59b59c576e42fa7d10cf0"}, + {file = "bitarray-2.9.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c1f4bf6ea8eb9d7f30808c2e9894237a96650adfecbf5f3643862dc5982f89e"}, + {file = "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a8873089be2aa15494c0f81af1209f6e1237d762c5065bc4766c1b84321e1b50"}, + {file = "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:677e67f50e2559efc677a4366707070933ad5418b8347a603a49a070890b19bc"}, + {file = "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:a620d8ce4ea2f1c73c6b6b1399e14cb68c6915e2be3fad5808c2998ed55b4acf"}, + {file = "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:64115ccabbdbe279c24c367b629c6b1d3da9ed36c7420129e27c338a3971bfee"}, + {file = "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:5d6fb422772e75385b76ad1c52f45a68bd4efafd8be8d0061c11877be74c4d43"}, + {file = "bitarray-2.9.2-cp36-cp36m-win32.whl", hash = "sha256:852e202875dd6dfd6139ce7ec4e98dac2b17d8d25934dc99900831e81c3adaef"}, + {file = "bitarray-2.9.2-cp36-cp36m-win_amd64.whl", hash = "sha256:7dfefdcb0dc6a3ba9936063cec65a74595571b375beabe18742b3d91d087eefd"}, + {file = "bitarray-2.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b306c4cf66912511422060f7f5e1149c8bdb404f8e00e600561b0749fdd45659"}, + {file = "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a09c4f81635408e3387348f415521d4b94198c562c23330f560596a6aaa26eaf"}, + {file = "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5361413fd2ecfdf44dc8f065177dc6aba97fa80a91b815586cb388763acf7f8d"}, + {file = "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e8a9475d415ef1eaae7942df6f780fa4dcd48fce32825eda591a17abba869299"}, + {file = "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9b87baa7bfff9a5878fcc1bffe49ecde6e647a72a64b39a69cd8a2992a43a34"}, + {file = "bitarray-2.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb6b86cfdfc503e92cb71c68766a24565359136961642504a7cc9faf936d9c88"}, + {file = "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cd56b8ae87ebc71bcacbd73615098e8a8de952ecbb5785b6b4e2b07da8a06e1f"}, + {file = "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:3fa909cfd675004aed8b4cc9df352415933656e0155a6209d878b7cb615c787e"}, + {file = "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:b069ca9bf728e0c5c5b60e00a89df9af34cc170c695c3bfa3b372d8f40288efb"}, + {file = "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:6067f2f07a7121749858c7daa93c8774325c91590b3e81a299621e347740c2ae"}, + {file = "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:321841cdad1dd0f58fe62e80e9c9c7531f8ebf8be93f047401e930dc47425b1e"}, + {file = "bitarray-2.9.2-cp37-cp37m-win32.whl", hash = "sha256:54e16e32e60973bb83c315de9975bc1bcfc9bd50bb13001c31da159bc49b0ca1"}, + {file = "bitarray-2.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:f4dcadb7b8034aa3491ee8f5a69b3d9ba9d7d1e55c3cc1fc45be313e708277f8"}, + {file = "bitarray-2.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c8919fdbd3bb596b104388b56ae4b266eb28da1f2f7dff2e1f9334a21840fe96"}, + {file = "bitarray-2.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eb7a9d8a2e400a1026de341ad48e21670a6261a75b06df162c5c39b0d0e7c8f4"}, + {file = "bitarray-2.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6ec84668dd7b937874a2b2c293cd14ba84f37be0d196dead852e0ada9815d807"}, + {file = "bitarray-2.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2de9a31c34e543ae089fd2a5ced01292f725190e379921384f695e2d7184bd3"}, + {file = "bitarray-2.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9521f49ae121a17c0a41e5112249e6fa7f6a571245b1118de81fb86e7c1bc1ce"}, + {file = "bitarray-2.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6cc6545d6d76542aee3d18c1c9485fb7b9812b8df4ebe52c4535ec42081b48f"}, + {file = "bitarray-2.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:856bbe1616425f71c0df5ef2e8755e878d9504d5a531acba58ab4273c52c117a"}, + {file = "bitarray-2.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4bba8042ea6ab331ade91bc435d81ad72fddb098e49108610b0ce7780c14e68"}, + {file = "bitarray-2.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a035da89c959d98afc813e3c62f052690d67cfd55a36592f25d734b70de7d4b0"}, + {file = "bitarray-2.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6d70b1579da7fb71be5a841a1f965d19aca0ef27f629cfc07d06b09aafd0a333"}, + {file = "bitarray-2.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:405b83bed28efaae6d86b6ab287c75712ead0adbfab2a1075a1b7ab47dad4d62"}, + {file = "bitarray-2.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:7eb8be687c50da0b397d5e0ab7ca200b5ebb639e79a9f5e285851d1944c94be9"}, + {file = "bitarray-2.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:eceb551dfeaf19c609003a69a0cf8264b0efd7abc3791a11dfabf4788daf0d19"}, + {file = "bitarray-2.9.2-cp38-cp38-win32.whl", hash = "sha256:bb198c6ed1edbcdaf3d1fa3c9c9d1cdb7e179a5134ef5ee660b53cdec43b34e7"}, + {file = "bitarray-2.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:648d2f2685590b0103c67a937c2fb9e09bcc8dfb166f0c7c77bd341902a6f5b3"}, + {file = "bitarray-2.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ea816dc8f8e65841a8bbdd30e921edffeeb6f76efe6a1eb0da147b60d539d1cf"}, + {file = "bitarray-2.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4d0e32530f941c41eddfc77600ec89b65184cb909c549336463a738fab3ed285"}, + {file = "bitarray-2.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4a22266fb416a3b6c258bf7f83c9fe531ba0b755a56986a81ad69dc0f3bcc070"}, + {file = "bitarray-2.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc6d3e80dd8239850f2604833ff3168b28909c8a9357abfed95632cccd17e3e7"}, + {file = "bitarray-2.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f135e804986b12bf14f2cd1eb86674c47dea86c4c5f0fa13c88978876b97ebe6"}, + {file = "bitarray-2.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87580c7f7d14f7ec401eda7adac1e2a25e95153e9c339872c8ae61b3208819a1"}, + {file = "bitarray-2.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64b433e26993127732ac7b66a7821b2537c3044355798de7c5fcb0af34b8296f"}, + {file = "bitarray-2.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e497c535f2a9b68c69d36631bf2dba243e05eb343b00b9c7bbdc8c601c6802d"}, + {file = "bitarray-2.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e40b3cb9fa1edb4e0175d7c06345c49c7925fe93e39ef55ecb0bc40c906b0c09"}, + {file = "bitarray-2.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f2f8692f95c9e377eb19ca519d30d1f884b02feb7e115f798de47570a359e43f"}, + {file = "bitarray-2.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f0b84fc50b6dbeced4fa390688c07c10a73222810fb0e08392bd1a1b8259de36"}, + {file = "bitarray-2.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d656ad38c942e38a470ddbce26b5020e08e1a7ea86b8fd413bb9024b5189993a"}, + {file = "bitarray-2.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6ab0f1dbfe5070db98771a56aa14797595acd45a1af9eadfb193851a270e7996"}, + {file = "bitarray-2.9.2-cp39-cp39-win32.whl", hash = "sha256:0a99b23ac845a9ea3157782c97465e6ae026fe0c7c4c1ed1d88f759fd6ea52d9"}, + {file = "bitarray-2.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:9bbcfc7c279e8d74b076e514e669b683f77b4a2a328585b3f16d4c5259c91222"}, + {file = "bitarray-2.9.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:43847799461d8ba71deb4d97b47250c2c2fb66d82cd3cb8b4caf52bb97c03034"}, + {file = "bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f44381b0a4bdf64416082f4f0e7140377ae962c0ced6f983c6d7bbfc034040"}, + {file = "bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a484061616fb4b158b80789bd3cb511f399d2116525a8b29b6334c68abc2310f"}, + {file = "bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1ff9e38356cc803e06134cf8ae9758e836ccd1b793135ef3db53c7c5d71e93bc"}, + {file = "bitarray-2.9.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b44105792fbdcfbda3e26ee88786790fda409da4c71f6c2b73888108cf8f062f"}, + {file = "bitarray-2.9.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7e913098de169c7fc890638ce5e171387363eb812579e637c44261460ac00aa2"}, + {file = "bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6fe315355cdfe3ed22ef355b8bdc81a805ca4d0949d921576560e5b227a1112"}, + {file = "bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f708e91fdbe443f3bec2df394ed42328fb9b0446dff5cb4199023ac6499e09fd"}, + {file = "bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b7b09489b71f9f1f64c0fa0977e250ec24500767dab7383ba9912495849cadf"}, + {file = "bitarray-2.9.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:128cc3488176145b9b137fdcf54c1c201809bbb8dd30b260ee40afe915843b43"}, + {file = "bitarray-2.9.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:21f21e7f56206be346bdbda2a6bdb2165a5e6a11821f88fd4911c5a6bbbdc7e2"}, + {file = "bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5f4dd3af86dd8a617eb6464622fb64ca86e61ce99b59b5c35d8cd33f9c30603d"}, + {file = "bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6465de861aff7a2559f226b37982007417eab8c3557543879987f58b453519bd"}, + {file = "bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbaf2bb71d6027152d603f1d5f31e0dfd5e50173d06f877bec484e5396d4594b"}, + {file = "bitarray-2.9.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:2f32948c86e0d230a296686db28191b67ed229756f84728847daa0c7ab7406e3"}, + {file = "bitarray-2.9.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:be94e5a685e60f9d24532af8fe5c268002e9016fa80272a94727f435de3d1003"}, + {file = "bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5cc9381fd54f3c23ae1039f977bfd6d041a5c3c1518104f616643c3a5a73b15"}, + {file = "bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd926e8ae4d1ed1ac4a8f37212a62886292f692bc1739fde98013bf210c2d175"}, + {file = "bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:461a3dafb9d5fda0bb3385dc507d78b1984b49da3fe4c6d56c869a54373b7008"}, + {file = "bitarray-2.9.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:393cb27fd859af5fd9c16eb26b1c59b17b390ff66b3ae5d0dd258270191baf13"}, + {file = "bitarray-2.9.2.tar.gz", hash = "sha256:a8f286a51a32323715d77755ed959f94bef13972e9a2fe71b609e40e6d27957e"}, +] + +[[package]] +name = "certifi" +version = "2023.11.17" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.11.17-py3-none-any.whl", hash = "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474"}, + {file = "certifi-2023.11.17.tar.gz", hash = "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1"}, +] + +[[package]] +name = "cffi" +version = "1.16.0" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, + {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, + {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, + {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, + {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, + {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, + {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, + {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, + {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, + {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, + {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, + {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, + {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, + {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "cfgv" +version = "3.4.0" +description = "Validate configuration and produce human readable error messages." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, + {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, +] + +[[package]] +name = "chardet" +version = "5.2.0" +description = "Universal encoding detector for Python 3" +optional = false +python-versions = ">=3.7" +files = [ + {file = "chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970"}, + {file = "chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "cytoolz" +version = "0.12.2" +description = "Cython implementation of Toolz: High performance functional utilities" +optional = false +python-versions = ">=3.6" +files = [ + {file = "cytoolz-0.12.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4bff49986c9bae127928a2f9fd6313146a342bfae8292f63e562f872bd01b871"}, + {file = "cytoolz-0.12.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:908c13f305d34322e11b796de358edaeea47dd2d115c33ca22909c5e8fb036fd"}, + {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:735147aa41b8eeb104da186864b55e2a6623c758000081d19c93d759cd9523e3"}, + {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7d352d4de060604e605abdc5c8a5d0429d5f156cb9866609065d3003454d4cea"}, + {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:89247ac220031a4f9f689688bcee42b38fd770d4cce294e5d914afc53b630abe"}, + {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9070ae35c410d644e6df98a8f69f3ed2807e657d0df2a26b2643127cbf6944a5"}, + {file = "cytoolz-0.12.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:843500cd3e4884b92fd4037912bc42d5f047108d2c986d36352e880196d465b0"}, + {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6a93644d7996fd696ab7f1f466cd75d718d0a00d5c8118b9fe8c64231dc1f85e"}, + {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:96796594c770bc6587376e74ddc7d9c982d68f47116bb69d90873db5e0ea88b6"}, + {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:48425107fbb1af3f0f2410c004f16be10ffc9374358e5600b57fa543f46f8def"}, + {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:cde6dbb788a4cbc4a80a72aa96386ba4c2b17bdfff3ace0709799adbe16d6476"}, + {file = "cytoolz-0.12.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:68ae7091cc73a752f0b938f15bb193de80ca5edf5ae2ea6360d93d3e9228357b"}, + {file = "cytoolz-0.12.2-cp310-cp310-win32.whl", hash = "sha256:997b7e0960072f6bb445402da162f964ea67387b9f18bda2361edcc026e13597"}, + {file = "cytoolz-0.12.2-cp310-cp310-win_amd64.whl", hash = "sha256:663911786dcde3e4a5d88215c722c531c7548903dc07d418418c0d1c768072c0"}, + {file = "cytoolz-0.12.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a7d8b869ded171f6cdf584fc2fc6ae03b30a0e1e37a9daf213a59857a62ed90"}, + {file = "cytoolz-0.12.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9b28787eaf2174e68f0acb3c66f9c6b98bdfeb0930c0d0b08e1941c7aedc8d27"}, + {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00547da587f124b32b072ce52dd5e4b37cf199fedcea902e33c67548523e4678"}, + {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:275d53fd769df2102d6c9fc98e553bd8a9a38926f54d6b20cf29f0dd00bf3b75"}, + {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5556acde785a61d4cf8b8534ae109b023cbd2f9df65ee2afbe070be47c410f8c"}, + {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a85b9b9a2530b72b0d3d10e383fc3c2647ae88169d557d5e216f881860318"}, + {file = "cytoolz-0.12.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:673d6e9e3aa86949343b46ac2b7be266c36e07ce77fa1d40f349e6987a814d6e"}, + {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:81e6a9a8fda78a2f4901d2915b25bf620f372997ca1f20a14f7cefef5ad6f6f4"}, + {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:fa44215bc31675a6380cd896dadb7f2054a7b94cfb87e53e52af844c65406a54"}, + {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:a08b4346350660799d81d4016e748bcb134a9083301d41f9618f64a6077f89f2"}, + {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:2fb740482794a72e2e5fec58e4d9b00dcd5a60a8cef68431ff12f2ba0e0d9a7e"}, + {file = "cytoolz-0.12.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9007bb1290c79402be6b84bcf9e7a622a073859d61fcee146dc7bc47afe328f3"}, + {file = "cytoolz-0.12.2-cp311-cp311-win32.whl", hash = "sha256:a973f5286758f76824ecf19ae1999f6697371a9121c8f163295d181d19a819d7"}, + {file = "cytoolz-0.12.2-cp311-cp311-win_amd64.whl", hash = "sha256:1ce324d1b413636ea5ee929f79637821f13c9e55e9588f38228947294944d2ed"}, + {file = "cytoolz-0.12.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:c08094b9e5d1b6dfb0845a0253cc2655ca64ce70d15162dfdb102e28c8993493"}, + {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:baf020f4b708f800b353259cd7575e335a79f1ac912d9dda55b2aa0bf3616e42"}, + {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4416ee86a87180b6a28e7483102c92debc077bec59c67eda8cc63fc52a218ac0"}, + {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c6ee222671eed5c5b16a5ad2aea07f0a715b8b199ee534834bc1dd2798f1ade7"}, + {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad92e37be0b106fdbc575a3a669b43b364a5ef334495c9764de4c2d7541f7a99"}, + {file = "cytoolz-0.12.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:460c05238fbfe6d848141669d17a751a46c923f9f0c9fd8a3a462ab737623a44"}, + {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:9e5075e30be626ef0f9bedf7a15f55ed4d7209e832bc314fdc232dbd61dcbf44"}, + {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:03b58f843f09e73414e82e57f7e8d88f087eaabf8f276b866a40661161da6c51"}, + {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5e4e612b7ecc9596e7c859cd9e0cd085e6d0c576b4f0d917299595eb56bf9c05"}, + {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:08a0e03f287e45eb694998bb55ac1643372199c659affa8319dfbbdec7f7fb3c"}, + {file = "cytoolz-0.12.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b029bdd5a8b6c9a7c0e8fdbe4fc25ffaa2e09b77f6f3462314696e3a20511829"}, + {file = "cytoolz-0.12.2-cp36-cp36m-win32.whl", hash = "sha256:18580d060fa637ff01541640ecde6de832a248df02b8fb57e6dd578f189d62c7"}, + {file = "cytoolz-0.12.2-cp36-cp36m-win_amd64.whl", hash = "sha256:97cf514a9f3426228d8daf880f56488330e4b2948a6d183a106921217850d9eb"}, + {file = "cytoolz-0.12.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:18a0f838677f9510aef0330c0096778dd6406d21d4ff9504bf79d85235a18460"}, + {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb081b2b02bf4405c804de1ece6f904916838ab0e057f1446e4ac12fac827960"}, + {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:57233e1600560ceb719bed759dc78393edd541b9a3e7fefc3079abd83c26a6ea"}, + {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0295289c4510efa41174850e75bc9188f82b72b1b54d0ea57d1781729c2924d5"}, + {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a92aab8dd1d427ac9bc7480cfd3481dbab0ef024558f2f5a47de672d8a5ffaa"}, + {file = "cytoolz-0.12.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:51d3495235af09f21aa92a7cdd51504bda640b108b6be834448b774f52852c09"}, + {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:f9c690b359f503f18bf1c46a6456370e4f6f3fc4320b8774ae69c4f85ecc6c94"}, + {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:481e3129a76ea01adcc0e7097ccb8dbddab1cfc40b6f0e32c670153512957c0f"}, + {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:55e94124af9c8fbb1df54195cc092688fdad0765641b738970b6f1d5ea72e776"}, + {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5616d386dfbfba7c39e9418ba668c734f6ceaacc0130877e8a100cad11e6838b"}, + {file = "cytoolz-0.12.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:732d08228fa8d366fec284f7032cc868d28a99fa81fc71e3adf7ecedbcf33a0f"}, + {file = "cytoolz-0.12.2-cp37-cp37m-win32.whl", hash = "sha256:f039c5373f7b314b151432c73219216857b19ab9cb834f0eb5d880f74fc7851c"}, + {file = "cytoolz-0.12.2-cp37-cp37m-win_amd64.whl", hash = "sha256:246368e983eaee9851b15d7755f82030eab4aa82098d2a34f6bef9c689d33fcc"}, + {file = "cytoolz-0.12.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:81074edf3c74bc9bd250d223408a5df0ff745d1f7a462597536cd26b9390e2d6"}, + {file = "cytoolz-0.12.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:960d85ebaa974ecea4e71fa56d098378fa51fd670ee744614cbb95bf95e28fc7"}, + {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c8d0dff4865da54ae825d43e1721925721b19f3b9aca8e730c2ce73dee2c630"}, + {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a9d12436fd64937bd2c9609605f527af7f1a8db6e6637639b44121c0fe715d6"}, + {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd461e402e24929d866f05061d2f8337e3a8456e75e21b72c125abff2477c7f7"}, + {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0568d4da0a9ee9f9f5ab318f6501557f1cfe26d18c96c8e0dac7332ae04c6717"}, + {file = "cytoolz-0.12.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:101b5bd32badfc8b1f9c7be04ba3ae04fb47f9c8736590666ce9449bff76e0b1"}, + {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8bb624dbaef4661f5e3625c1e39ad98ecceef281d1380e2774d8084ad0810275"}, + {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3e993804e6b04113d61fdb9541b6df2f096ec265a506dad7437517470919c90f"}, + {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ab911033e5937fc221a2c165acce7f66ae5ac9d3e54bec56f3c9c197a96be574"}, + {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6de6a4bdfaee382c2de2a3580b3ae76fce6105da202bbd835e5efbeae6a9c6e"}, + {file = "cytoolz-0.12.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:9480b4b327be83c4d29cb88bcace761b11f5e30198ffe2287889455c6819e934"}, + {file = "cytoolz-0.12.2-cp38-cp38-win32.whl", hash = "sha256:4180b2785d1278e6abb36a72ac97c92432db53fa2df00ee943d2c15a33627d31"}, + {file = "cytoolz-0.12.2-cp38-cp38-win_amd64.whl", hash = "sha256:d0086ba8d41d73647b13087a3ca9c020f6bfec338335037e8f5172b4c7c8dce5"}, + {file = "cytoolz-0.12.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d29988bde28a90a00367edcf92afa1a2f7ecf43ea3ae383291b7da6d380ccc25"}, + {file = "cytoolz-0.12.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:24c0d71e9ac91f4466b1bd280f7de43aa4d94682daaf34d85d867a9b479b87cc"}, + {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa436abd4ac9ca71859baf5794614e6ec8fa27362f0162baedcc059048da55f7"}, + {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:45c7b4eac7571707269ebc2893facdf87e359cd5c7cfbfa9e6bd8b33fb1079c5"}, + {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:294d24edc747ef4e1b28e54365f713becb844e7898113fafbe3e9165dc44aeea"}, + {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:478051e5ef8278b2429864c8d148efcebdc2be948a61c9a44757cd8c816c98f5"}, + {file = "cytoolz-0.12.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14108cafb140dd68fdda610c2bbc6a37bf052cd48cfebf487ed44145f7a2b67f"}, + {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:5fef7b602ccf8a3c77ab483479ccd7a952a8c5bb1c263156671ba7aaa24d1035"}, + {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9bf51354e15520715f068853e6ab8190e77139940e8b8b633bdb587956a08fb0"}, + {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:388f840fd911d61a96e9e595eaf003f9dc39e847c9060b8e623ab29e556f009b"}, + {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:a67f75cc51a2dc7229a8ac84291e4d61dc5abfc8940befcf37a2836d95873340"}, + {file = "cytoolz-0.12.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:63b31345e20afda2ae30dba246955517a4264464d75e071fc2fa641e88c763ec"}, + {file = "cytoolz-0.12.2-cp39-cp39-win32.whl", hash = "sha256:f6e86ac2b45a95f75c6f744147483e0fc9697ce7dfe1726083324c236f873f8b"}, + {file = "cytoolz-0.12.2-cp39-cp39-win_amd64.whl", hash = "sha256:5998f81bf6a2b28a802521efe14d9fc119f74b64e87b62ad1b0e7c3d8366d0c7"}, + {file = "cytoolz-0.12.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:593e89e2518eaf81e96edcc9ef2c5fca666e8fc922b03d5cb7a7b8964dbee336"}, + {file = "cytoolz-0.12.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ff451d614ca1d4227db0ffa627fb51df71968cf0d9baf0210528dad10fdbc3ab"}, + {file = "cytoolz-0.12.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad9ea4a50d2948738351790047d45f2b1a023facc01bf0361988109b177e8b2f"}, + {file = "cytoolz-0.12.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbe038bb78d599b5a29d09c438905defaa615a522bc7e12f8016823179439497"}, + {file = "cytoolz-0.12.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:d494befe648c13c98c0f3d56d05489c839c9228a32f58e9777305deb6c2c1cee"}, + {file = "cytoolz-0.12.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c26805b6c8dc8565ed91045c44040bf6c0fe5cb5b390c78cd1d9400d08a6cd39"}, + {file = "cytoolz-0.12.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:df4e32badb2ccf1773e1e74020b7e3b8caf9e92f842c6be7d14888ecdefc2c6c"}, + {file = "cytoolz-0.12.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce7889dc3701826d519ede93cdff11940fb5567dbdc165dce0e78047eece02b7"}, + {file = "cytoolz-0.12.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c820608e7077416f766b148d75e158e454881961881b657cff808529d261dd24"}, + {file = "cytoolz-0.12.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:698da4fa1f7baeea0607738cb1f9877ed1ba50342b29891b0223221679d6f729"}, + {file = "cytoolz-0.12.2.tar.gz", hash = "sha256:31d4b0455d72d914645f803d917daf4f314d115c70de0578d3820deb8b101f66"}, +] + +[package.dependencies] +toolz = ">=0.8.0" + +[package.extras] +cython = ["cython"] + +[[package]] +name = "dataproperty" +version = "1.0.1" +description = "Python library for extract property from data." +optional = false +python-versions = ">=3.7" +files = [ + {file = "DataProperty-1.0.1-py3-none-any.whl", hash = "sha256:0b8b07d4fb6453fcf975b53d35dea41f3cfd69c9d79b5010c3cf224ff0407a7a"}, + {file = "DataProperty-1.0.1.tar.gz", hash = "sha256:723e5729fa6e885e127a771a983ee1e0e34bb141aca4ffe1f0bfa7cde34650a4"}, +] + +[package.dependencies] +mbstrdecoder = ">=1.0.0,<2" +typepy = {version = ">=1.2.0,<2", extras = ["datetime"]} + +[package.extras] +logging = ["loguru (>=0.4.1,<1)"] +test = ["pytest (>=6.0.1)", "pytest-md-report (>=0.3)", "tcolorpy (>=0.1.2)"] + +[[package]] +name = "deepdiff" +version = "6.2.1" +description = "Deep Difference and Search of any Python object/data. Recreate objects by adding adding deltas to each other." +optional = false +python-versions = ">=3.7" +files = [ + {file = "deepdiff-6.2.1-py3-none-any.whl", hash = "sha256:8ba27c185f9197b78c316ce7bb0c743d25d14f7cdb8ec3b340437dbc93dcbff2"}, + {file = "deepdiff-6.2.1.tar.gz", hash = "sha256:3fe134dde5b3922ff8c51fc1e95a972e659c853797231b836a5ccf15532fd516"}, +] + +[package.dependencies] +ordered-set = ">=4.0.2,<4.2.0" + +[package.extras] +cli = ["clevercsv (==0.7.4)", "click (==8.1.3)", "pyyaml (==6.0)", "toml (==0.10.2)"] + +[[package]] +name = "delayed-assert" +version = "0.3.6" +description = "Delayed/soft assertions for python" +optional = false +python-versions = "*" +files = [ + {file = "delayed_assert-0.3.6-py3-none-any.whl", hash = "sha256:9987466c4d05c94af21151f27e58a8c13beba176e5f358d16c21b6abd3e6268b"}, + {file = "delayed_assert-0.3.6.tar.gz", hash = "sha256:0e1c65afae4bae9c57b91c76e38287562924c9964a58c309249790c725c46239"}, +] + +[[package]] +name = "distlib" +version = "0.3.8" +description = "Distribution utilities" +optional = false +python-versions = "*" +files = [ + {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"}, + {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"}, +] + +[[package]] +name = "ecdsa" +version = "0.18.0" +description = "ECDSA cryptographic signature library (pure python)" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "ecdsa-0.18.0-py2.py3-none-any.whl", hash = "sha256:80600258e7ed2f16b9aa1d7c295bd70194109ad5a30fdee0eaeefef1d4c559dd"}, + {file = "ecdsa-0.18.0.tar.gz", hash = "sha256:190348041559e21b22a1d65cee485282ca11a6f81d503fddb84d5017e9ed1e49"}, +] + +[package.dependencies] +six = ">=1.9.0" + +[package.extras] +gmpy = ["gmpy"] +gmpy2 = ["gmpy2"] + +[[package]] +name = "eth-abi" +version = "5.0.0" +description = "eth_abi: Python utilities for working with Ethereum ABI definitions, especially encoding and decoding" +optional = false +python-versions = ">=3.8, <4" +files = [ + {file = "eth_abi-5.0.0-py3-none-any.whl", hash = "sha256:936a715d7366ac13cac665cbdaf01cc4aabbe8c2d810d716287a9634f9665e01"}, + {file = "eth_abi-5.0.0.tar.gz", hash = "sha256:89c4454d794d9ed92ad5cb2794698c5cee6b7b3ca6009187d0e282adc7f9b6dc"}, +] + +[package.dependencies] +eth-typing = ">=3.0.0" +eth-utils = ">=2.0.0" +parsimonious = ">=0.9.0,<0.10.0" + +[package.extras] +dev = ["build (>=0.9.0)", "bumpversion (>=0.5.3)", "eth-hash[pycryptodome]", "hypothesis (>=4.18.2,<5.0.0)", "ipython", "pre-commit (>=3.4.0)", "pytest (>=7.0.0)", "pytest-pythonpath (>=0.7.1)", "pytest-xdist (>=2.4.0)", "sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +docs = ["sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +test = ["eth-hash[pycryptodome]", "hypothesis (>=4.18.2,<5.0.0)", "pytest (>=7.0.0)", "pytest-pythonpath (>=0.7.1)", "pytest-xdist (>=2.4.0)"] +tools = ["hypothesis (>=4.18.2,<5.0.0)"] + +[[package]] +name = "eth-account" +version = "0.10.0" +description = "eth-account: Sign Ethereum transactions and messages with local private keys" +optional = false +python-versions = ">=3.7, <4" +files = [ + {file = "eth-account-0.10.0.tar.gz", hash = "sha256:474a2fccf7286230cf66502565f03b536921d7e1fdfceba198e42160e5ac4bc1"}, + {file = "eth_account-0.10.0-py3-none-any.whl", hash = "sha256:b7a83f506a8edf57926569e5f04471ce3f1700e572d3421b4ad0dad7a26c0978"}, +] + +[package.dependencies] +bitarray = ">=2.4.0" +eth-abi = ">=4.0.0-b.2" +eth-keyfile = ">=0.6.0" +eth-keys = ">=0.4.0" +eth-rlp = ">=0.3.0" +eth-utils = ">=2.0.0" +hexbytes = ">=0.1.0,<0.4.0" +rlp = ">=1.0.0" + +[package.extras] +dev = ["black (>=23)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "coverage", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "hypothesis (>=4.18.0,<5)", "ipython", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +doc = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +lint = ["black (>=23)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=6.0.0)"] +test = ["coverage", "hypothesis (>=4.18.0,<5)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] + +[[package]] +name = "eth-hash" +version = "0.6.0" +description = "eth-hash: The Ethereum hashing function, keccak256, sometimes (erroneously) called sha3" +optional = false +python-versions = ">=3.8, <4" +files = [ + {file = "eth-hash-0.6.0.tar.gz", hash = "sha256:ae72889e60db6acbb3872c288cfa02ed157f4c27630fcd7f9c8442302c31e478"}, + {file = "eth_hash-0.6.0-py3-none-any.whl", hash = "sha256:9f8daaa345764f8871dc461855049ac54ae4291d780279bce6fce7f24e3f17d3"}, +] + +[package.dependencies] +pycryptodome = {version = ">=3.6.6,<4", optional = true, markers = "extra == \"pycryptodome\""} + +[package.extras] +dev = ["build (>=0.9.0)", "bumpversion (>=0.5.3)", "ipython", "pre-commit (>=3.4.0)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +docs = ["sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +pycryptodome = ["pycryptodome (>=3.6.6,<4)"] +pysha3 = ["pysha3 (>=1.0.0,<2.0.0)", "safe-pysha3 (>=1.0.0)"] +test = ["pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] + +[[package]] +name = "eth-keyfile" +version = "0.7.0" +description = "eth-keyfile: A library for handling the encrypted keyfiles used to store ethereum private keys" +optional = false +python-versions = ">=3.8, <4" +files = [ + {file = "eth-keyfile-0.7.0.tar.gz", hash = "sha256:6bdb8110c3a50439deb68a04c93c9d5ddd5402353bfae1bf4cfca1d6dff14fcf"}, + {file = "eth_keyfile-0.7.0-py3-none-any.whl", hash = "sha256:6a89b231a2fe250c3a8f924f2695bb9cce33ddd0d6f7ebbcdacd183d7f83d537"}, +] + +[package.dependencies] +eth-keys = ">=0.4.0" +eth-utils = ">=2" +pycryptodome = ">=3.6.6,<4" + +[package.extras] +dev = ["build (>=0.9.0)", "bumpversion (>=0.5.3)", "ipython", "pre-commit (>=3.4.0)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +docs = ["towncrier (>=21,<22)"] +test = ["pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] + +[[package]] +name = "eth-keys" +version = "0.5.0" +description = "eth-keys: Common API for Ethereum key operations" +optional = false +python-versions = ">=3.8, <4" +files = [ + {file = "eth-keys-0.5.0.tar.gz", hash = "sha256:a0abccb83f3d84322591a2c047a1e3aa52ea86b185fa3e82ce311d120ca2791e"}, + {file = "eth_keys-0.5.0-py3-none-any.whl", hash = "sha256:b2bed3ff3bcede68cc0cd4458c7147baaeaac1211a1efdb6ca019f9d3d989f2b"}, +] + +[package.dependencies] +eth-typing = ">=3" +eth-utils = ">=2" + +[package.extras] +coincurve = ["coincurve (>=12.0.0)"] +dev = ["asn1tools (>=0.146.2)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "coincurve (>=12.0.0)", "eth-hash[pysha3]", "factory-boy (>=3.0.1)", "hypothesis (>=5.10.3,<6)", "ipython", "pre-commit (>=3.4.0)", "pyasn1 (>=0.4.5)", "pytest (>=7.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +docs = ["towncrier (>=21,<22)"] +test = ["asn1tools (>=0.146.2)", "eth-hash[pysha3]", "factory-boy (>=3.0.1)", "hypothesis (>=5.10.3,<6)", "pyasn1 (>=0.4.5)", "pytest (>=7.0.0)"] + +[[package]] +name = "eth-rlp" +version = "1.0.0" +description = "eth-rlp: RLP definitions for common Ethereum objects in Python" +optional = false +python-versions = ">=3.8, <4" +files = [ + {file = "eth-rlp-1.0.0.tar.gz", hash = "sha256:a988d713a36452e7c6da71186798343f687eaf3aeb7f99266750dd9e1f754c7b"}, + {file = "eth_rlp-1.0.0-py3-none-any.whl", hash = "sha256:5029b90334bf21d4b728278b42d4672700c34e65ef34a70610b8fffcc8255fc8"}, +] + +[package.dependencies] +eth-utils = ">=2.0.0" +hexbytes = ">=0.1.0,<1" +rlp = ">=0.6.0" + +[package.extras] +dev = ["build (>=0.9.0)", "bumpversion (>=0.5.3)", "eth-hash[pycryptodome]", "ipython", "pre-commit (>=3.4.0)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +docs = ["sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +test = ["eth-hash[pycryptodome]", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] + +[[package]] +name = "eth-typing" +version = "4.0.0" +description = "eth-typing: Common type annotations for ethereum python packages" +optional = false +python-versions = ">=3.8, <4" +files = [ + {file = "eth-typing-4.0.0.tar.gz", hash = "sha256:9af0b6beafbc5c2e18daf19da5f5a68315023172c4e79d149e12ad10a3d3f731"}, + {file = "eth_typing-4.0.0-py3-none-any.whl", hash = "sha256:7e556bea322b6e8c0a231547b736c258e10ce9eed5ddc254f51031b12af66a16"}, +] + +[package.extras] +dev = ["build (>=0.9.0)", "bumpversion (>=0.5.3)", "ipython", "pre-commit (>=3.4.0)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +docs = ["sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +test = ["pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] + +[[package]] +name = "eth-utils" +version = "2.3.1" +description = "eth-utils: Common utility functions for python code that interacts with Ethereum" +optional = false +python-versions = ">=3.7,<4" +files = [ + {file = "eth-utils-2.3.1.tar.gz", hash = "sha256:56a969b0536d4969dcb27e580521de35abf2dbed8b1bf072b5c80770c4324e27"}, + {file = "eth_utils-2.3.1-py3-none-any.whl", hash = "sha256:614eedc5ffcaf4e6708ca39e23b12bd69526a312068c1170c773bd1307d13972"}, +] + +[package.dependencies] +cytoolz = {version = ">=0.10.1", markers = "implementation_name == \"cpython\""} +eth-hash = ">=0.3.1" +eth-typing = ">=3.0.0" +toolz = {version = ">0.8.2", markers = "implementation_name == \"pypy\""} + +[package.extras] +dev = ["black (>=23)", "build (>=0.9.0)", "bumpversion (>=0.5.3)", "eth-hash[pycryptodome]", "flake8 (==3.8.3)", "hypothesis (>=4.43.0)", "ipython", "isort (>=5.11.0)", "mypy (==0.971)", "pydocstyle (>=5.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "types-setuptools", "wheel"] +docs = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +lint = ["black (>=23)", "flake8 (==3.8.3)", "isort (>=5.11.0)", "mypy (==0.971)", "pydocstyle (>=5.0.0)", "types-setuptools"] +test = ["hypothesis (>=4.43.0)", "mypy (==0.971)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)", "types-setuptools"] + +[[package]] +name = "exceptiongroup" +version = "1.2.0" +description = "Backport of PEP 654 (exception groups)" +optional = false +python-versions = ">=3.7" +files = [ + {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, + {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, +] + +[package.extras] +test = ["pytest (>=6)"] + +[[package]] +name = "execnet" +version = "2.0.2" +description = "execnet: rapid multi-Python deployment" +optional = false +python-versions = ">=3.7" +files = [ + {file = "execnet-2.0.2-py3-none-any.whl", hash = "sha256:88256416ae766bc9e8895c76a87928c0012183da3cc4fc18016e6f050e025f41"}, + {file = "execnet-2.0.2.tar.gz", hash = "sha256:cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af"}, +] + +[package.extras] +testing = ["hatch", "pre-commit", "pytest", "tox"] + +[[package]] +name = "filelock" +version = "3.13.1" +description = "A platform independent file lock." +optional = false +python-versions = ">=3.8" +files = [ + {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, + {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, +] + +[package.extras] +docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.24)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"] +typing = ["typing-extensions (>=4.8)"] + +[[package]] +name = "flake8" +version = "6.1.0" +description = "the modular source code checker: pep8 pyflakes and co" +optional = false +python-versions = ">=3.8.1" +files = [ + {file = "flake8-6.1.0-py2.py3-none-any.whl", hash = "sha256:ffdfce58ea94c6580c77888a86506937f9a1a227dfcd15f245d694ae20a6b6e5"}, + {file = "flake8-6.1.0.tar.gz", hash = "sha256:d5b3857f07c030bdb5bf41c7f53799571d75c4491748a3adcd47de929e34cd23"}, +] + +[package.dependencies] +mccabe = ">=0.7.0,<0.8.0" +pycodestyle = ">=2.11.0,<2.12.0" +pyflakes = ">=3.1.0,<3.2.0" + +[[package]] +name = "frozenlist" +version = "1.4.1" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, + {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, + {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, + {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, + {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, + {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, + {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, + {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, + {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, + {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, + {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, + {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, + {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, + {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, + {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, + {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, + {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, + {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, + {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, + {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, + {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, + {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, + {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, + {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, + {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, + {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, + {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, +] + +[[package]] +name = "func-timeout" +version = "4.3.5" +description = "Python module which allows you to specify timeouts when calling any existing function. Also provides support for stoppable-threads" +optional = false +python-versions = "*" +files = [ + {file = "func_timeout-4.3.5.tar.gz", hash = "sha256:74cd3c428ec94f4edfba81f9b2f14904846d5ffccc27c92433b8b5939b5575dd"}, +] + +[[package]] +name = "hexbytes" +version = "0.3.1" +description = "hexbytes: Python `bytes` subclass that decodes hex, with a readable console output" +optional = false +python-versions = ">=3.7, <4" +files = [ + {file = "hexbytes-0.3.1-py3-none-any.whl", hash = "sha256:383595ad75026cf00abd570f44b368c6cdac0c6becfae5c39ff88829877f8a59"}, + {file = "hexbytes-0.3.1.tar.gz", hash = "sha256:a3fe35c6831ee8fafd048c4c086b986075fc14fd46258fa24ecb8d65745f9a9d"}, +] + +[package.extras] +dev = ["black (>=22)", "bumpversion (>=0.5.3)", "eth-utils (>=1.0.1,<3)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "hypothesis (>=3.44.24,<=6.31.6)", "ipython", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=5.0.0)", "pytest (>=7.0.0)", "pytest-watch (>=4.1.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +doc = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +lint = ["black (>=22)", "flake8 (==6.0.0)", "flake8-bugbear (==23.3.23)", "isort (>=5.10.1)", "mypy (==0.971)", "pydocstyle (>=5.0.0)"] +test = ["eth-utils (>=1.0.1,<3)", "hypothesis (>=3.44.24,<=6.31.6)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] + +[[package]] +name = "identify" +version = "2.5.33" +description = "File identification library for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "identify-2.5.33-py2.py3-none-any.whl", hash = "sha256:d40ce5fcd762817627670da8a7d8d8e65f24342d14539c59488dc603bf662e34"}, + {file = "identify-2.5.33.tar.gz", hash = "sha256:161558f9fe4559e1557e1bff323e8631f6a0e4837f7497767c1782832f16b62d"}, +] + +[package.extras] +license = ["ukkonen"] + +[[package]] +name = "idna" +version = "3.6" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, + {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" +optional = false +python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] + +[[package]] +name = "jinja2" +version = "3.1.2" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, + {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "jsonschema" +version = "4.21.0" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.21.0-py3-none-any.whl", hash = "sha256:70a09719d375c0a2874571b363c8a24be7df8071b80c9aa76bc4551e7297c63c"}, + {file = "jsonschema-4.21.0.tar.gz", hash = "sha256:3ba18e27f7491ea4a1b22edce00fb820eec968d397feb3f9cb61d5894bb38167"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, + {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, +] + +[package.dependencies] +referencing = ">=0.31.0" + +[[package]] +name = "lru-dict" +version = "1.3.0" +description = "An Dict like LRU container." +optional = false +python-versions = ">=3.8" +files = [ + {file = "lru-dict-1.3.0.tar.gz", hash = "sha256:54fd1966d6bd1fcde781596cb86068214edeebff1db13a2cea11079e3fd07b6b"}, + {file = "lru_dict-1.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4073333894db9840f066226d50e6f914a2240711c87d60885d8c940b69a6673f"}, + {file = "lru_dict-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0ad6361e4dd63b47b2fc8eab344198f37387e1da3dcfacfee19bafac3ec9f1eb"}, + {file = "lru_dict-1.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c637ab54b8cd9802fe19b260261e38820d748adf7606e34045d3c799b6dde813"}, + {file = "lru_dict-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fce5f95489ca1fc158cc9fe0f4866db9cec82c2be0470926a9080570392beaf"}, + {file = "lru_dict-1.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2bf2e24cf5f19c3ff69bf639306e83dced273e6fa775b04e190d7f5cd16f794"}, + {file = "lru_dict-1.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e90059f7701bef3c4da073d6e0434a9c7dc551d5adce30e6b99ef86b186f4b4a"}, + {file = "lru_dict-1.3.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1ecb7ae557239c64077e9b26a142eb88e63cddb104111a5122de7bebbbd00098"}, + {file = "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6af36166d22dba851e06a13e35bbf33845d3dd88872e6aebbc8e3e7db70f4682"}, + {file = "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ee38d420c77eed548df47b7d74b5169a98e71c9e975596e31ab808e76d11f09"}, + {file = "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0e1845024c31e6ff246c9eb5e6f6f1a8bb564c06f8a7d6d031220044c081090b"}, + {file = "lru_dict-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3ca5474b1649555d014be1104e5558a92497509021a5ba5ea6e9b492303eb66b"}, + {file = "lru_dict-1.3.0-cp310-cp310-win32.whl", hash = "sha256:ebb03a9bd50c2ed86d4f72a54e0aae156d35a14075485b2127c4b01a3f4a63fa"}, + {file = "lru_dict-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:04cda617f4e4c27009005d0a8185ef02829b14b776d2791f5c994cc9d668bc24"}, + {file = "lru_dict-1.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:20c595764695d20bdc3ab9b582e0cc99814da183544afb83783a36d6741a0dac"}, + {file = "lru_dict-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d9b30a8f50c3fa72a494eca6be5810a1b5c89e4f0fda89374f0d1c5ad8d37d51"}, + {file = "lru_dict-1.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9710737584650a4251b9a566cbb1a86f83437adb209c9ba43a4e756d12faf0d7"}, + {file = "lru_dict-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b84c321ae34f2f40aae80e18b6fa08b31c90095792ab64bb99d2e385143effaa"}, + {file = "lru_dict-1.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eed24272b4121b7c22f234daed99899817d81d671b3ed030c876ac88bc9dc890"}, + {file = "lru_dict-1.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd13af06dab7c6ee92284fd02ed9a5613a07d5c1b41948dc8886e7207f86dfd"}, + {file = "lru_dict-1.3.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a1efc59bfba6aac33684d87b9e02813b0e2445b2f1c444dae2a0b396ad0ed60c"}, + {file = "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cfaf75ac574447afcf8ad998789071af11d2bcf6f947643231f692948839bd98"}, + {file = "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c95f8751e2abd6f778da0399c8e0239321d560dbc58cb063827123137d213242"}, + {file = "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:abd0c284b26b5c4ee806ca4f33ab5e16b4bf4d5ec9e093e75a6f6287acdde78e"}, + {file = "lru_dict-1.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2a47740652b25900ac5ce52667b2eade28d8b5fdca0ccd3323459df710e8210a"}, + {file = "lru_dict-1.3.0-cp311-cp311-win32.whl", hash = "sha256:a690c23fc353681ed8042d9fe8f48f0fb79a57b9a45daea2f0be1eef8a1a4aa4"}, + {file = "lru_dict-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:efd3f4e0385d18f20f7ea6b08af2574c1bfaa5cb590102ef1bee781bdfba84bc"}, + {file = "lru_dict-1.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:c279068f68af3b46a5d649855e1fb87f5705fe1f744a529d82b2885c0e1fc69d"}, + {file = "lru_dict-1.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:350e2233cfee9f326a0d7a08e309372d87186565e43a691b120006285a0ac549"}, + {file = "lru_dict-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4eafb188a84483b3231259bf19030859f070321b00326dcb8e8c6cbf7db4b12f"}, + {file = "lru_dict-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73593791047e36b37fdc0b67b76aeed439fcea80959c7d46201240f9ec3b2563"}, + {file = "lru_dict-1.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1958cb70b9542773d6241974646e5410e41ef32e5c9e437d44040d59bd80daf2"}, + {file = "lru_dict-1.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc1cd3ed2cee78a47f11f3b70be053903bda197a873fd146e25c60c8e5a32cd6"}, + {file = "lru_dict-1.3.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82eb230d48eaebd6977a92ddaa6d788f14cf4f4bcf5bbffa4ddfd60d051aa9d4"}, + {file = "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5ad659cbc349d0c9ba8e536b5f40f96a70c360f43323c29f4257f340d891531c"}, + {file = "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ba490b8972531d153ac0d4e421f60d793d71a2f4adbe2f7740b3c55dce0a12f1"}, + {file = "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:c0131351b8a7226c69f1eba5814cbc9d1d8daaf0fdec1ae3f30508e3de5262d4"}, + {file = "lru_dict-1.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:0e88dba16695f17f41701269fa046197a3fd7b34a8dba744c8749303ddaa18df"}, + {file = "lru_dict-1.3.0-cp312-cp312-win32.whl", hash = "sha256:6ffaf595e625b388babc8e7d79b40f26c7485f61f16efe76764e32dce9ea17fc"}, + {file = "lru_dict-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:cf9da32ef2582434842ab6ba6e67290debfae72771255a8e8ab16f3e006de0aa"}, + {file = "lru_dict-1.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:c265f16c936a8ff3bb4b8a4bda0be94c15ec28b63e99fdb1439c1ffe4cd437db"}, + {file = "lru_dict-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:784ca9d3b0730b3ec199c0a58f66264c63dd5d438119c739c349a6a9be8e5f6e"}, + {file = "lru_dict-1.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e13b2f58f647178470adaa14603bb64cc02eeed32601772ccea30e198252883c"}, + {file = "lru_dict-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ffbce5c2e80f57937679553c8f27e61ec327c962bf7ea0b15f1d74277fd5363"}, + {file = "lru_dict-1.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7969cb034b3ccc707aff877c73c225c32d7e2a7981baa8f92f5dd4d468fe8c33"}, + {file = "lru_dict-1.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca9ab676609cce85dd65d91c275e47da676d13d77faa72de286fbea30fbaa596"}, + {file = "lru_dict-1.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f27c078b5d75989952acbf9b77e14c3dadc468a4aafe85174d548afbc5efc38b"}, + {file = "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6123aefe97762ad74215d05320a7f389f196f0594c8813534284d4eafeca1a96"}, + {file = "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:cd869cadba9a63e1e7fe2dced4a5747d735135b86016b0a63e8c9e324ab629ac"}, + {file = "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:40a8daddc29c7edb09dfe44292cf111f1e93a8344349778721d430d336b50505"}, + {file = "lru_dict-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a03170e4152836987a88dcebde61aaeb73ab7099a00bb86509d45b3fe424230"}, + {file = "lru_dict-1.3.0-cp38-cp38-win32.whl", hash = "sha256:3b4f121afe10f5a82b8e317626eb1e1c325b3f104af56c9756064cd833b1950b"}, + {file = "lru_dict-1.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:1470f5828c7410e16c24b5150eb649647986e78924816e6fb0264049dea14a2b"}, + {file = "lru_dict-1.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a3c9f746a9917e784fffcedeac4c8c47a3dbd90cbe13b69e9140182ad97ce4b7"}, + {file = "lru_dict-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2789296819525a1f3204072dfcf3df6db8bcf69a8fc740ffd3de43a684ea7002"}, + {file = "lru_dict-1.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:170b66d29945391460351588a7bd8210a95407ae82efe0b855e945398a1d24ea"}, + {file = "lru_dict-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:774ca88501a9effe8797c3db5a6685cf20978c9cb0fe836b6813cfe1ca60d8c9"}, + {file = "lru_dict-1.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:df2e119c6ae412d2fd641a55f8a1e2e51f45a3de3449c18b1b86c319ab79e0c4"}, + {file = "lru_dict-1.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:28aa1ea42a7e48174bf513dc2416fea7511a547961e678dc6f5670ca987c18cb"}, + {file = "lru_dict-1.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9537e1cee6fa582cb68f2fb9ce82d51faf2ccc0a638b275d033fdcb1478eb80b"}, + {file = "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:64545fca797fe2c68c5168efb5f976c6e1459e058cab02445207a079180a3557"}, + {file = "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a193a14c66cfc0c259d05dddc5e566a4b09e8f1765e941503d065008feebea9d"}, + {file = "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:3cb1de0ce4137b060abaafed8474cc0ebd12cedd88aaa7f7b3ebb1ddfba86ae0"}, + {file = "lru_dict-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8551ccab1349d4bebedab333dfc8693c74ff728f4b565fe15a6bf7d296bd7ea9"}, + {file = "lru_dict-1.3.0-cp39-cp39-win32.whl", hash = "sha256:6cb0be5e79c3f34d69b90d8559f0221e374b974b809a22377122c4b1a610ff67"}, + {file = "lru_dict-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:9f725f2a0bdf1c18735372d5807af4ea3b77888208590394d4660e3d07971f21"}, + {file = "lru_dict-1.3.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f8f7824db5a64581180ab9d09842e6dd9fcdc46aac9cb592a0807cd37ea55680"}, + {file = "lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:acd04b7e7b0c0c192d738df9c317093335e7282c64c9d1bb6b7ebb54674b4e24"}, + {file = "lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5c20f236f27551e3f0adbf1a987673fb1e9c38d6d284502cd38f5a3845ef681"}, + {file = "lru_dict-1.3.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca3703ff03b03a1848c563bc2663d0ad813c1cd42c4d9cf75b623716d4415d9a"}, + {file = "lru_dict-1.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a9fb71ba262c6058a0017ce83d343370d0a0dbe2ae62c2eef38241ec13219330"}, + {file = "lru_dict-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f5b88a7c39e307739a3701194993455968fcffe437d1facab93546b1b8a334c1"}, + {file = "lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2682bfca24656fb7a643621520d57b7fe684ed5fa7be008704c1235d38e16a32"}, + {file = "lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96fc87ddf569181827458ec5ad8fa446c4690cffacda66667de780f9fcefd44d"}, + {file = "lru_dict-1.3.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcec98e2c7da7631f0811730303abc4bdfe70d013f7a11e174a2ccd5612a7c59"}, + {file = "lru_dict-1.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:6bba2863060caeaedd8386b0c8ee9a7ce4d57a7cb80ceeddf440b4eff2d013ba"}, + {file = "lru_dict-1.3.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3c497fb60279f1e1d7dfbe150b1b069eaa43f7e172dab03f206282f4994676c5"}, + {file = "lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d9509d817a47597988615c1a322580c10100acad10c98dfcf3abb41e0e5877f"}, + {file = "lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0213ab4e3d9a8d386c18e485ad7b14b615cb6f05df6ef44fb2a0746c6ea9278b"}, + {file = "lru_dict-1.3.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b50fbd69cd3287196796ab4d50e4cc741eb5b5a01f89d8e930df08da3010c385"}, + {file = "lru_dict-1.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5247d1f011f92666010942434020ddc5a60951fefd5d12a594f0e5d9f43e3b3b"}, +] + +[package.extras] +test = ["pytest"] + +[[package]] +name = "markupsafe" +version = "2.1.3" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] + +[[package]] +name = "mbstrdecoder" +version = "1.1.3" +description = "mbstrdecoder is a Python library for multi-byte character string decoder" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mbstrdecoder-1.1.3-py3-none-any.whl", hash = "sha256:d66c1ed3f2dc4e7c5d87cd44a75be10bc5af4250f95b38bbaedd7851308ce938"}, + {file = "mbstrdecoder-1.1.3.tar.gz", hash = "sha256:dcfd2c759322eb44fe193a9e0b1b86c5b87f3ec5ea8e1bb43b3e9ae423f1e8fe"}, +] + +[package.dependencies] +chardet = ">=3.0.4,<6" + +[package.extras] +test = ["Faker (>=1.0.2)", "pytest (>=6.0.1)", "pytest-md-report (>=0.1)"] + +[[package]] +name = "mccabe" +version = "0.7.0" +description = "McCabe checker, plugin for flake8" +optional = false +python-versions = ">=3.6" +files = [ + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, +] + +[[package]] +name = "more-itertools" +version = "10.2.0" +description = "More routines for operating on iterables, beyond itertools" +optional = false +python-versions = ">=3.8" +files = [ + {file = "more-itertools-10.2.0.tar.gz", hash = "sha256:8fccb480c43d3e99a00087634c06dd02b0d50fbf088b380de5a41a015ec239e1"}, + {file = "more_itertools-10.2.0-py3-none-any.whl", hash = "sha256:686b06abe565edfab151cb8fd385a05651e1fdf8f0a14191e4439283421f8684"}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "nodeenv" +version = "1.8.0" +description = "Node.js virtual environment builder" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" +files = [ + {file = "nodeenv-1.8.0-py2.py3-none-any.whl", hash = "sha256:df865724bb3c3adc86b3876fa209771517b0cfe596beff01a92700e0e8be4cec"}, + {file = "nodeenv-1.8.0.tar.gz", hash = "sha256:d51e0c37e64fbf47d017feac3145cdbb58836d7eee8c6f6d3b6880c5456227d2"}, +] + +[package.dependencies] +setuptools = "*" + +[[package]] +name = "ordered-set" +version = "4.1.0" +description = "An OrderedSet is a custom MutableSet that remembers its order, so that every" +optional = false +python-versions = ">=3.7" +files = [ + {file = "ordered-set-4.1.0.tar.gz", hash = "sha256:694a8e44c87657c59292ede72891eb91d34131f6531463aab3009191c77364a8"}, + {file = "ordered_set-4.1.0-py3-none-any.whl", hash = "sha256:046e1132c71fcf3330438a539928932caf51ddbc582496833e23de611de14562"}, +] + +[package.extras] +dev = ["black", "mypy", "pytest"] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "parsimonious" +version = "0.9.0" +description = "(Soon to be) the fastest pure-Python PEG parser I could muster" +optional = false +python-versions = "*" +files = [ + {file = "parsimonious-0.9.0.tar.gz", hash = "sha256:b2ad1ae63a2f65bd78f5e0a8ac510a98f3607a43f1db2a8d46636a5d9e4a30c1"}, +] + +[package.dependencies] +regex = ">=2022.3.15" + +[[package]] +name = "pathvalidate" +version = "2.5.2" +description = "pathvalidate is a Python library to sanitize/validate a string such as filenames/file-paths/etc." +optional = false +python-versions = ">=3.6" +files = [ + {file = "pathvalidate-2.5.2-py3-none-any.whl", hash = "sha256:e39a4dfacdba70e3a96d3e4c6ff617a39e991cf242e6e1f2017f1f67c3408d33"}, + {file = "pathvalidate-2.5.2.tar.gz", hash = "sha256:5ff57d0fabe5ecb7a4f1e4957bfeb5ad8ab5ab4c0fa71f79c6bbc24bd9b7d14d"}, +] + +[package.extras] +test = ["allpairspy", "click", "faker", "pytest (>=6.0.1)", "pytest-discord (>=0.0.6)", "pytest-md-report (>=0.0.12)"] + +[[package]] +name = "platformdirs" +version = "4.1.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.8" +files = [ + {file = "platformdirs-4.1.0-py3-none-any.whl", hash = "sha256:11c8f37bcca40db96d8144522d925583bdb7a31f7b0e37e3ed4318400a8e2380"}, + {file = "platformdirs-4.1.0.tar.gz", hash = "sha256:906d548203468492d432bcb294d4bc2fff751bf84971fbb2c10918cc206ee420"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "pluggy" +version = "1.3.0" +description = "plugin and hook calling mechanisms for python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, + {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, +] + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] + +[[package]] +name = "pre-commit" +version = "3.6.0" +description = "A framework for managing and maintaining multi-language pre-commit hooks." +optional = false +python-versions = ">=3.9" +files = [ + {file = "pre_commit-3.6.0-py2.py3-none-any.whl", hash = "sha256:c255039ef399049a5544b6ce13d135caba8f2c28c3b4033277a788f434308376"}, + {file = "pre_commit-3.6.0.tar.gz", hash = "sha256:d30bad9abf165f7785c15a21a1f46da7d0677cb00ee7ff4c579fd38922efe15d"}, +] + +[package.dependencies] +cfgv = ">=2.0.0" +identify = ">=1.0.0" +nodeenv = ">=0.11.1" +pyyaml = ">=5.1" +virtualenv = ">=20.10.0" + +[[package]] +name = "protobuf" +version = "4.25.2" +description = "" +optional = false +python-versions = ">=3.8" +files = [ + {file = "protobuf-4.25.2-cp310-abi3-win32.whl", hash = "sha256:b50c949608682b12efb0b2717f53256f03636af5f60ac0c1d900df6213910fd6"}, + {file = "protobuf-4.25.2-cp310-abi3-win_amd64.whl", hash = "sha256:8f62574857ee1de9f770baf04dde4165e30b15ad97ba03ceac65f760ff018ac9"}, + {file = "protobuf-4.25.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:2db9f8fa64fbdcdc93767d3cf81e0f2aef176284071507e3ede160811502fd3d"}, + {file = "protobuf-4.25.2-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:10894a2885b7175d3984f2be8d9850712c57d5e7587a2410720af8be56cdaf62"}, + {file = "protobuf-4.25.2-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:fc381d1dd0516343f1440019cedf08a7405f791cd49eef4ae1ea06520bc1c020"}, + {file = "protobuf-4.25.2-cp38-cp38-win32.whl", hash = "sha256:33a1aeef4b1927431d1be780e87b641e322b88d654203a9e9d93f218ee359e61"}, + {file = "protobuf-4.25.2-cp38-cp38-win_amd64.whl", hash = "sha256:47f3de503fe7c1245f6f03bea7e8d3ec11c6c4a2ea9ef910e3221c8a15516d62"}, + {file = "protobuf-4.25.2-cp39-cp39-win32.whl", hash = "sha256:5e5c933b4c30a988b52e0b7c02641760a5ba046edc5e43d3b94a74c9fc57c1b3"}, + {file = "protobuf-4.25.2-cp39-cp39-win_amd64.whl", hash = "sha256:d66a769b8d687df9024f2985d5137a337f957a0916cf5464d1513eee96a63ff0"}, + {file = "protobuf-4.25.2-py3-none-any.whl", hash = "sha256:a8b7a98d4ce823303145bf3c1a8bdb0f2f4642a414b196f04ad9853ed0c8f830"}, + {file = "protobuf-4.25.2.tar.gz", hash = "sha256:fe599e175cb347efc8ee524bcd4b902d11f7262c0e569ececcb89995c15f0a5e"}, +] + +[[package]] +name = "py-bip39-bindings" +version = "0.1.11" +description = "Python bindings for tiny-bip39 RUST crate" +optional = false +python-versions = "*" +files = [ + {file = "py_bip39_bindings-0.1.11-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:324a7363f8b49201ebe1cc72d970017ec5139f8a5ddf605fa2774904eb7f08a1"}, + {file = "py_bip39_bindings-0.1.11-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:77173b83c7ade4ca3c91fae0da9c9b1bc5f4c6819baa2276feacd5abec6005fa"}, + {file = "py_bip39_bindings-0.1.11-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84e5177fb3d3b9607f5d7d526a89f91b35687fcc34b643fc96cd168a0ae025cb"}, + {file = "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76ecd1cfb17f0b1bb56f0b1de5c533ff9830a60b5d657846b8cf500ff9fca8b3"}, + {file = "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3408dc0809fca5691f9c02c8292d62590d90de4f02a4b2dcab35817fa857a71"}, + {file = "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_28_armv7l.whl", hash = "sha256:d6f0eda277c6d0ef28cc83fd3f59a0f745394ea1e2807f2fea49186084b3d47d"}, + {file = "py_bip39_bindings-0.1.11-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:963357db40dc7a816d55097a85929cae18c6174c5bedf0410f6e72181270b2b1"}, + {file = "py_bip39_bindings-0.1.11-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:be06dc751be86cbd72cd71e318979d3ab27cee12fd84d1e5e4e84575c5c9355d"}, + {file = "py_bip39_bindings-0.1.11-cp310-none-win32.whl", hash = "sha256:b4e05b06831874fa8715bdb128ea776674ad708858a4b3b1a27e5710859b086d"}, + {file = "py_bip39_bindings-0.1.11-cp310-none-win_amd64.whl", hash = "sha256:e01a03e858a648d294bcf063368bf09027efa282f5192abddaf7af69c5e2a574"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:27cce22727e28705a660464689ade6d2cdad4e622bead5bde2ffa53c4f605ee5"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:cdf35d031587296dcbdb22dbc67f2eaf5b5df9d5036b77fbeb93affbb9eec8d3"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2fd5b926686207752d5f2e2ff164a9489b3613239d0967362f10c2fbd64eb018"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba84c38962bffdaea0e499245731d669cc21d1280f81ace8ff60ed3550024570"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9024ec3c4a3db005b355f9a00602cede290dec5e9c7cf7dd06a26f620b0cf99"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_28_armv7l.whl", hash = "sha256:ce028c8aef51dec2a85f298461b2988cca28740bf3cc23472c3469d3f853714e"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:51882cd0fa7529173b3543c089c24c775f1876ddf48f10e60f2ed07ad2af5cae"}, + {file = "py_bip39_bindings-0.1.11-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ee776f3b33b2d71fee48679951f117e3d1f052449ec2fcb184f3c64a4c77e4f"}, + {file = "py_bip39_bindings-0.1.11-cp311-none-win32.whl", hash = "sha256:d8b722e49562810f94eb61c9efa172f327537c74c37da3e86b161f7f444c51bf"}, + {file = "py_bip39_bindings-0.1.11-cp311-none-win_amd64.whl", hash = "sha256:be934052497f07605768e2c7184e4f4269b3e2e77930131dfc9bdbb791e6fdf4"}, + {file = "py_bip39_bindings-0.1.11-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:76fc141ed154ccef9c36d5e2eb615565f2e272a43ed56edbdda538840b597187"}, + {file = "py_bip39_bindings-0.1.11-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:3837f7040e732f7be49da5f595f147de2304e92a67267b12d5aa08a9bb02dd4b"}, + {file = "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82de90eabe531095d4e4721ea1546873f0161c101c30b43dcf0a7bbd9cdcce69"}, + {file = "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19794bafd088cfb50f99b04f3710c895756fe25ec342eaea0b5c579512493b61"}, + {file = "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_28_armv7l.whl", hash = "sha256:8b9aa564a0081c360776b2230472475bd2971ddbe8f99ed7d8676c0ab3b2e0e4"}, + {file = "py_bip39_bindings-0.1.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1f55ab4fc519b8a9b80b28e02756788b9da037a2484e42282497eb9a253e5a58"}, + {file = "py_bip39_bindings-0.1.11-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:cd1b874bc812866804a40242cdb1303de9caeb0ed261852dfbb5cbce94db31a4"}, + {file = "py_bip39_bindings-0.1.11-cp37-none-win32.whl", hash = "sha256:aa643eae0ebc185e50fcbc088210930f2cb4b30145dfd18a2b031451ce3edb03"}, + {file = "py_bip39_bindings-0.1.11-cp37-none-win_amd64.whl", hash = "sha256:e68673dbe4d2d99f64e493ac1369ac39b0bd9266dddefe476802d853f9637906"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:b1bece61da3c8ed37b86ac19051bab4cb599318066cdcf6ca9d795bdf7553525"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:5cc8a25d058f8f7741af38015b56177a1fbd442d7a2d463860c76fb86ff33211"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ac1d37c0266c40f592a53b282c392f40bc23c117ca092a46e419c9d141a3dc89"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bd63afb8451a0ee91658144f1fa9d1b5ed908ca458e713864e775e47bb806414"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa30b9b4b01cc703801924be51e802f7ae778abea433f4e3908fc470e2a517ef"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_28_armv7l.whl", hash = "sha256:f826af5e54e250272af9203ce85bf53064fe514df8222836c3ff43f23ccd55fe"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:08ba04fbad6d795c0bc59bbdf05a2bae9de929f34101fa149501e83fc4e52d6f"}, + {file = "py_bip39_bindings-0.1.11-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:1f9ba82d427353bd6e7521b03583e0e72d745e7d6bf0b1505555a1032b6fd656"}, + {file = "py_bip39_bindings-0.1.11-cp38-none-win32.whl", hash = "sha256:86df39df8c573be8ff92e613d833045919e1351446898d683cc9a49ebeb25a87"}, + {file = "py_bip39_bindings-0.1.11-cp38-none-win_amd64.whl", hash = "sha256:e26cde6585ab95042fef48f6740a4f1a7962f2a571e73f1f12bfc4daee786c9a"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:3bb22e4f2430bc28d93599c70a4d6ce9fc3e88db3f20b24ca17902f796be6ae9"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:75de7c7e76581244c3893fb624e44d84dadcceddd73f221ab74a9cb3c04b416b"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7e1a364081460498caa7d8238c54ae78b009d331afcb4f037d659b02639b969e"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3112f408f2d58be9ea3189903e5f2d944a0d882fa35b91b7bb88a195a16a8c1"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b921f36a4ef7a3bccb2635f2a5f91647a63ebaa1a4962a24fa236e5a32834cf"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_28_armv7l.whl", hash = "sha256:77accd187ef9a87e1d32f279b45a6e23123816b933a7e3d8c4a2fe61f6bd1d2e"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fd74fd810cc1076dd0c2944490d4acb1a109837cc9cfd58b29605ea81b4034f5"}, + {file = "py_bip39_bindings-0.1.11-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:153f310e55795509b8b004590dbc0cff58d65e8f032c1558021fc0898121a465"}, + {file = "py_bip39_bindings-0.1.11-cp39-none-win32.whl", hash = "sha256:b769bcc358c806ca1a5983e57eb94ee33ec3a8ef69fa01aa6b28960fa3e0ab5a"}, + {file = "py_bip39_bindings-0.1.11-cp39-none-win_amd64.whl", hash = "sha256:3d8a802d504c928d97e951489e942f39c9bfeec2a7305a6f0f3d5d38e152db9e"}, + {file = "py_bip39_bindings-0.1.11.tar.gz", hash = "sha256:ebc128ccf3a0750d758557e094802f0975c3760a939f8a8b76392d7dbe6b52a1"}, +] + +[[package]] +name = "py-ed25519-zebra-bindings" +version = "1.0.1" +description = "Python bindings for the ed25519-zebra RUST crate" +optional = false +python-versions = "*" +files = [ + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:a5c83e3a30f2f34556244422962cb9d2214fbf6ebdc82e9afb1e09d1d44ac457"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:28b6addbf398b92bd8bf16da188094f3af2344c352d78647d0b2f13d5f7e4bd0"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:908029ef33cad332bdc93bde4bd81bc60c42c171584f5e5dafcb1b18764f8c07"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b804356c81cac5ab29e72fbdff4dc02222f763dfa0f0e221d21d1265a0db5144"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:93a703eb4b754959a375371a3fa35c1a19da98d4a3c4da0db7b7659ba6517d25"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-manylinux_2_28_armv7l.whl", hash = "sha256:8c741ea2e0f92df500d9c1cc5b566198c75b6cb7dbf8a122d0bed269e5088e1c"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:903830c6f08b722fba4dae7c23993c998a657729c60bcc3fb27ba70091eaea11"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:529011a6182d73d36974e6e670fc62d11ee33e4a3e3ba9f37924d22e92a54c15"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:04ce9ca5fc634a0ee5ee2d6d91a284d09ee6fe6162288938bfb71c7495033d38"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-none-win32.whl", hash = "sha256:8d4e04a453a5a86efc4c6b5e82b1ed2e9110a41e73292c631728dfcbc620396d"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp310-none-win_amd64.whl", hash = "sha256:3042988709fa6b1f5f0f0f928bddbf81ebd3c11b80a43014bfb92e985659a385"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e249b0d57187077859652a1119b315dec49e4d458c9795a7aeb2381799ce34e6"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:50d383684b650d92f93e1482891ce0c1c2011d2ca3b0821b5b049d6bb35dca3e"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d32d2c4d50789e6d3e081ab9a6d4e6f82bcf414e6b1c41a8f64a04065f6db340"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:363599e810ccc1f09092803a14a386ee8bce44d7057a3e36a14b1bf31de7e0b5"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fa59836fac97352def00c2c7c6fed33ba351258b24d3f7cbced646271aa94de6"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3d16da4fd6da771fd2323a90d779076066a02bb2a2c62b15ecf51ca2706f451b"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2e715341b4927f6735ed7113644c0a5362310df4ddad1f938b5040c85884db15"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-none-win32.whl", hash = "sha256:21498379d5e85d97a9633b7cf6362b4d187c7575ab8633c3ba6c99b1dcb83358"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp311-none-win_amd64.whl", hash = "sha256:58e7d56a6f565fc044d313ec429b782150366a39ada973051dde60f1363abd9b"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp36-cp36m-macosx_10_7_x86_64.whl", hash = "sha256:ac9d378114ce16420f66fd990ff09156f1d056b993a6076edeae4f866f5fd67f"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e884b347d4a8d821327bafbdfcc19b2c8997d6a78704db15ef1db33baea4c1"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3fcbe7677a8ba0888df9ce882402e13153b23dfdb97c8d0ec4e2ebd41d7c6b69"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp36-none-win32.whl", hash = "sha256:acb25c465eca7deb7b0238fa0e2e69a5944856495a316a12e75f01ca5a4003c3"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp36-none-win_amd64.whl", hash = "sha256:8d520eb4303624ac8a0a3a01f555fe55b1c0614a138da56bd753ece19660e470"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:3a37105f9cf44dd997ad0161a6e08969d96181173f22327329907a4825941c74"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf0ff95e75318b28020ed91beb76a8faecd3beefc092417867b3732dd94e55ca"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57a325635c7bf833d3ed10ac0f29fc6a54e18e7ccf962325b0104445192bce98"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:962553eea9eaf5bec9be9d7a7e0687b1aaa741eb57534a1905cacaf09a8e425d"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-manylinux_2_28_armv7l.whl", hash = "sha256:67f743c8775b04ea7591753d7beeecaa5094edc23e4a26ced857dee7ac355d15"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:93eb5662e3af1083d81fd4a5a9cd254ac94f9e282e38f21e030f7d1c12d5dd98"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9cbec53099bbeca1ff7d89cb977c7251b5740ac1019dc42d34752f318212c3e1"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e0a58597049d6478406f4231d9532740b64b0d1558bd37e9735474a9fb559bdd"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-none-win32.whl", hash = "sha256:8a0ccb15371744e5eca7557532132ee7a5dfad41cbfcc3a6bbf4431f4c18cd87"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp37-none-win_amd64.whl", hash = "sha256:f3f209988adf229e98b07629698fc5fb2401b95e1db0b7a063f1945049e857bc"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:831ff6b3ba2f73d46671e0ba7efd26f26827839d652c4eed157c43fc58d44ed7"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d32570528ad5c514bbe92264a1a7ea0242884a63ea560067240b66740e6b3576"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd402a6795442af3a325907b5aab2b9154292eff7469adab3b3676c615704238"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb318f6c2d32292c9252e5626ac80253d1d7dcf93e9c03714c6e3fef8a83077e"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:6b537ae31ea90c670e93c7139e86b8299cbbeab7ceb2cdd67c54e9f0ac0607bf"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-manylinux_2_28_armv7l.whl", hash = "sha256:7aea3a70d07adccb378aa3edfa3aef214e9154c25e9b505b8a22c886f78f8bef"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:48c8728ac5d6468b936b1568ccca00a9a025b70b120ca578f5188066e777c63d"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3b3b8b8a977cc842bbcd7f5c54f00a9dfb08668a1a0c3e67f811f445822561d8"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ea66861e82597c81ae4d42ccf6f7215b50e5fcebbf9657067011b0e3a93e05aa"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-none-win32.whl", hash = "sha256:0bfe4309f4dbc1257716c3d64336246429284b55c2cc36785638d4abf7f41bfa"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp38-none-win_amd64.whl", hash = "sha256:139e297b51979ac8b7ad736033fa5243169d84c4cc92df9e036be93a363cc2c0"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:a44384ed0ff3cb6430e0a5dec19c3928a5aa1d9c0f9185c03dd09193a37de252"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:14c543aacce2abbbaa73044752fc1174b7faae4a163400da727c6bd7935cef7d"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:871aafae7973e5c5895084ab9ebcb547709a24eeb3c757f430ad33a49d47cc3d"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:027c8a92cea1e95926cad0c78de09d627751fc942fca2e413708e70eba18f41a"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:38adce4f22560a558a589532624b47c958d66bc0cca1921a67b5986c11f96f1d"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-manylinux_2_28_armv7l.whl", hash = "sha256:b3de615cdfc544dd3bd6d1ef46e4e315a397cf0df8b764bf898522e61aad3d1a"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2d145aff9d5e12e2b99922d7dac3f97071805e46378157ffff6bb6ec51d27d1c"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d4ca9b0cccd3e3e5d5a6c045b8f28c63de8cb7603fc8d0db2855a6fc7b1f19f3"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6268fe204967c626a03cd2f62f343a684361a23e273c4568a16072d676624555"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-none-win32.whl", hash = "sha256:d0fe3d60374e0a295cccf618ca1c3ee8896670b0ebf676026b112fae328dcdb5"}, + {file = "py_ed25519_zebra_bindings-1.0.1-cp39-none-win_amd64.whl", hash = "sha256:6e393d68e3dcae521d5da88c4dbb3ca4f2ba79a274e6f2eecd7a3768c00cab25"}, + {file = "py_ed25519_zebra_bindings-1.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:670f01572012aabd02436de78bd880a63691031f7758289a05529368e8af5ac6"}, + {file = "py_ed25519_zebra_bindings-1.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aae847c456757dc8e5022c0f5af64db07baaf8e0d60e0931912e92c1e9ea532d"}, + {file = "py_ed25519_zebra_bindings-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98450820e82e4fd446e2b9fd7b449e8b4cb645fa4c053d4e0a598a9c43ed8209"}, + {file = "py_ed25519_zebra_bindings-1.0.1.tar.gz", hash = "sha256:0062f189e1c8672ba94676cedb346fae4c33a0cabaf12e75a1aedcf9db47403b"}, +] + +[[package]] +name = "py-sr25519-bindings" +version = "0.2.0" +description = "Python bindings for sr25519 library" +optional = false +python-versions = "*" +files = [ + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:86cc1a571852a4f2ade827ebf211e066b23ab805d3e864cbe213a3d8cd53f7d5"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:453c9088e39dd04b07bf3ada6c473a5349c4dfd965009a35124b2c807117eda8"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f12122a18b688e4a4bf0e74d3969d9e3f6f83d2b01fe88ab5f19c969e95192a2"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2815ecc958f6edbad79fee76899bd33b8950caa7106c1db08c828ec90e16fa7"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfe52e73d7f0237820f7a935397d5004733a1d890464701f2c3c71be6033c442"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-manylinux_2_28_armv7l.whl", hash = "sha256:df7e2fad636831919bfa479cd4b6fffdd429cde778da72b1834c1434dadaf982"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f4ebeb2aac26a39160f2fad8ffc40ff98da835af57618c0446637bf182b9c927"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:942a6b52e871d6e152dda80a60ed338dccedc69b6375e080e496bf886f2556c0"}, + {file = "py_sr25519_bindings-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b24307c34a06209d0e34ca15ab4c0275617538dfdac1eac8aa25e792fa9f4108"}, + {file = "py_sr25519_bindings-0.2.0-cp310-none-win32.whl", hash = "sha256:2e06a2d1119a2ad063f11448bb27ec4f4ba77416043d98ae28ef30624cf0e12d"}, + {file = "py_sr25519_bindings-0.2.0-cp310-none-win_amd64.whl", hash = "sha256:16b36d9fe8bda873ab8376f3a4d0894b8d4ab2d702665afc3ab3ca69f0dc9495"}, + {file = "py_sr25519_bindings-0.2.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:54e8c41081a4c23eca4b19f52de2514c48ddec6f49844dff7ad4cfac0bc11712"}, + {file = "py_sr25519_bindings-0.2.0-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:6c73bd1a87849db9cd0e664b2d2e14208183dd8d11ac083d70e688fc28283a71"}, + {file = "py_sr25519_bindings-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47d21382ea24f7f25e72cdddaca2f013ce46cc7983bcfebc611c795cea177eff"}, + {file = "py_sr25519_bindings-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c1448cf55bbf6f52d2e24766a8a84ba6d77100a991897e8519711ccd7409830"}, + {file = "py_sr25519_bindings-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:392b8b9875c89c9302930ad3d59567b62176f33adeee96a55ff61ba17fb7aac2"}, + {file = "py_sr25519_bindings-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7b56b5cbbfb36b41ddfa462989a03386590ac036f3a755ef64fffeb2fed88654"}, + {file = "py_sr25519_bindings-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8f06ea3237e06666e3a4ff4719b4fba415472943831b229428753c37d5ecd1b4"}, + {file = "py_sr25519_bindings-0.2.0-cp311-none-win_amd64.whl", hash = "sha256:d62af30b2022f5fa787e46c06823c35a21abe791bf55012f498f9ba8e4baabc8"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-macosx_10_7_x86_64.whl", hash = "sha256:c3de899a1e911b8945f09e6389f8d2df68924c12c78e3e66fedb15f1e4ff56ad"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:758761b605f90e4238304df7520155a3358b13cc55ee18c5113632da17343163"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f63580a224607e68b861eb03421465091c3104b6309e5fca7448f5aa6dbda60"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37b999075b76cae8e84d5f19f2c8f28d3f24c93ba858ad49e58bcf22afe0406b"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-manylinux_2_28_armv7l.whl", hash = "sha256:5102c94e97d316009ad4482f24d9a933fc0b7eb0bb88e6a784a820cd1bd25827"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b477b18940f472d4e25e141f19503a6e55aadff31b4822228a491c9638096baf"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:7e69bf7bdc9920013c1a2bea25a8b02df9588d9856cb20270f4d8d95b8e83f52"}, + {file = "py_sr25519_bindings-0.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:dc436a34e17037833c3909062722ee3d46e28288972c87f619d163d00054d68e"}, + {file = "py_sr25519_bindings-0.2.0-cp36-none-win32.whl", hash = "sha256:fc27c847dd4df727388aaadc3870aeb472f2d5c35717536d319792fe08f6120a"}, + {file = "py_sr25519_bindings-0.2.0-cp36-none-win_amd64.whl", hash = "sha256:0441381c2a6f532831d560a1f2ae8a917c7190cf27f5428d9b0528fa28a72e2d"}, + {file = "py_sr25519_bindings-0.2.0-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:e1471134450e6189b7e38d245ab16b06f3de900b6d07aa66b1e6973cdbc00d01"}, + {file = "py_sr25519_bindings-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:302bd20e75d900d98e7961934b03958e8acc8784eed594ab48f9bb298396c734"}, + {file = "py_sr25519_bindings-0.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e09ac91f4b2e2b9c50e268f6ee292d9fa447c5b7cc6327cfeae7750d716f49e"}, + {file = "py_sr25519_bindings-0.2.0-cp37-cp37m-manylinux_2_28_armv7l.whl", hash = "sha256:28b904739147c4f797627bd3b44d1e64d061533253abd1882c6d3b8944e7bbd8"}, + {file = "py_sr25519_bindings-0.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0931ac85331aae33bef67460a3cce554ef5c1f7dfec0ebe2f5b9ea57c5bee65c"}, + {file = "py_sr25519_bindings-0.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cd8da64f9e42ff973b394ed9164f1e9a454279a058eed08ac8d006fcbd61093b"}, + {file = "py_sr25519_bindings-0.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:297ad50e3cace5c89dbf5bd916b714aac3ebe6bc76f85382dac228cbeb71449e"}, + {file = "py_sr25519_bindings-0.2.0-cp37-none-win32.whl", hash = "sha256:422d62ca74ebe5065eca88607552b9a5f1dc4abff0c597cc3793dd8adfb8c4ea"}, + {file = "py_sr25519_bindings-0.2.0-cp37-none-win_amd64.whl", hash = "sha256:d1b0ed9a4dded60f671f34fdd81c974dad159e98f43bcab21833f984e05920f9"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:37f11ffee535c624bf5ddc6109c2cdca9a2dbd10f7d310bcd1dd97f6121c532f"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:4e1b553a6b1cc1b0aa9da2d7157329713cc7f299acb12a052d326f9b594b145c"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f0b6dcf1328027dba1f9236bd3432cc3cce1de55a12c1a3a4ea7a8dc3ab3e857"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:458c7e6d7447bd267a6f870a8801e995d710952566a0a52634f408bf804cf27a"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d64253d7d08fd6073e7b79bba9cff78687e76698cc210d3c6f236b90766b9421"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-manylinux_2_28_armv7l.whl", hash = "sha256:a9aac20a196416b8daf764704a9cee71ddee16bc705d12b5c6bcb6f51e81ac6e"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e162687189cf765f602178aa195a2be4284107622141ff746e92e14e266cf3b7"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d44ab4d150c9bdd1641ccad49942ecf2d0ef61bd66a7da41094bb4a9cbaca529"}, + {file = "py_sr25519_bindings-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:251ff9cef5dafd96ff241b77ff471912c40249b6df31e71c6c32de6a26a8dbc6"}, + {file = "py_sr25519_bindings-0.2.0-cp38-none-win32.whl", hash = "sha256:ca9794f9d4fc37cdc8cbb6724d5432a064d22c26ecde312928154b6bc691f4d3"}, + {file = "py_sr25519_bindings-0.2.0-cp38-none-win_amd64.whl", hash = "sha256:6406cb0aeb5cbb8cfaa37d59d15d7640c0d812a1cbb55657bee52fd3d9e92aa9"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:b9da73447c8f5b8392a8229c2b65d742709c6aa2d0c6b32e39b635fb245145f1"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:7f00236a802d6d3f3705713d5352ba968c0ce353a20519c445e66ce19869bfdc"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d473199c0dbad846b0723c6663b1b6a04040ccdca700cb1609acac3e621f2087"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44bede0dd42f75cf849d3ccb4e443d6425218035bc00a6330b11dc2cc1146f3b"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-manylinux_2_28_armv7l.whl", hash = "sha256:a8e462d2442726d9db07854dc2eb640b1a8a548948b1ff3aa580771ab739bab8"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:55b1f67fdaeab91481fda54432dffdf87ed516d26461d31e70911c7ea55d6164"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ec11493d59075ba75fe0bc0312d502ffdc45b641a46fb084bf8b04906597688b"}, + {file = "py_sr25519_bindings-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:101ee46368da149ad332aea225d4ff2907dffce574e8f8f7fe56f5c29211f333"}, + {file = "py_sr25519_bindings-0.2.0-cp39-none-win32.whl", hash = "sha256:909f13f63f67f1e5595d4d495cf8a3c95e392626c08f94550cbf8f0e8ea1c743"}, + {file = "py_sr25519_bindings-0.2.0-cp39-none-win_amd64.whl", hash = "sha256:b3f86e4aad6c2b8ff74af76f38fde7fbaf9dd83bc4a7c259709092008c3b8e5d"}, + {file = "py_sr25519_bindings-0.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38db0ee90bd676b9df7ddd03fcb2113b5a5e9d9c984d82426728acc0e9d54277"}, + {file = "py_sr25519_bindings-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5dfe767069d5c5e8a313e77b6bd681ea4f6b5988b09b6b4c9399e255fe4a7c53"}, + {file = "py_sr25519_bindings-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8951d1a6e310a682a6253d547e44a9e7a606476dbc18dea3f121d98bdb81042"}, + {file = "py_sr25519_bindings-0.2.0.tar.gz", hash = "sha256:0c2fe92b7cdcebf6c5611a90054f8ba6ea90b68b8832896d2dc565537bc40b0c"}, +] + +[[package]] +name = "pycodestyle" +version = "2.11.1" +description = "Python style guide checker" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pycodestyle-2.11.1-py2.py3-none-any.whl", hash = "sha256:44fe31000b2d866f2e41841b18528a505fbd7fef9017b04eff4e2648a0fadc67"}, + {file = "pycodestyle-2.11.1.tar.gz", hash = "sha256:41ba0e7afc9752dfb53ced5489e89f8186be00e599e712660695b7a75ff2663f"}, +] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "pycryptodome" +version = "3.20.0" +description = "Cryptographic library for Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "pycryptodome-3.20.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:f0e6d631bae3f231d3634f91ae4da7a960f7ff87f2865b2d2b831af1dfb04e9a"}, + {file = "pycryptodome-3.20.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:baee115a9ba6c5d2709a1e88ffe62b73ecc044852a925dcb67713a288c4ec70f"}, + {file = "pycryptodome-3.20.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:417a276aaa9cb3be91f9014e9d18d10e840a7a9b9a9be64a42f553c5b50b4d1d"}, + {file = "pycryptodome-3.20.0-cp27-cp27m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a1250b7ea809f752b68e3e6f3fd946b5939a52eaeea18c73bdab53e9ba3c2dd"}, + {file = "pycryptodome-3.20.0-cp27-cp27m-musllinux_1_1_aarch64.whl", hash = "sha256:d5954acfe9e00bc83ed9f5cb082ed22c592fbbef86dc48b907238be64ead5c33"}, + {file = "pycryptodome-3.20.0-cp27-cp27m-win32.whl", hash = "sha256:06d6de87c19f967f03b4cf9b34e538ef46e99a337e9a61a77dbe44b2cbcf0690"}, + {file = "pycryptodome-3.20.0-cp27-cp27m-win_amd64.whl", hash = "sha256:ec0bb1188c1d13426039af8ffcb4dbe3aad1d7680c35a62d8eaf2a529b5d3d4f"}, + {file = "pycryptodome-3.20.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:5601c934c498cd267640b57569e73793cb9a83506f7c73a8ec57a516f5b0b091"}, + {file = "pycryptodome-3.20.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:d29daa681517f4bc318cd8a23af87e1f2a7bad2fe361e8aa29c77d652a065de4"}, + {file = "pycryptodome-3.20.0-cp27-cp27mu-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3427d9e5310af6680678f4cce149f54e0bb4af60101c7f2c16fdf878b39ccccc"}, + {file = "pycryptodome-3.20.0-cp27-cp27mu-musllinux_1_1_aarch64.whl", hash = "sha256:3cd3ef3aee1079ae44afaeee13393cf68b1058f70576b11439483e34f93cf818"}, + {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac1c7c0624a862f2e53438a15c9259d1655325fc2ec4392e66dc46cdae24d044"}, + {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:76658f0d942051d12a9bd08ca1b6b34fd762a8ee4240984f7c06ddfb55eaf15a"}, + {file = "pycryptodome-3.20.0-cp35-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f35d6cee81fa145333137009d9c8ba90951d7d77b67c79cbe5f03c7eb74d8fe2"}, + {file = "pycryptodome-3.20.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76cb39afede7055127e35a444c1c041d2e8d2f1f9c121ecef573757ba4cd2c3c"}, + {file = "pycryptodome-3.20.0-cp35-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49a4c4dc60b78ec41d2afa392491d788c2e06edf48580fbfb0dd0f828af49d25"}, + {file = "pycryptodome-3.20.0-cp35-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fb3b87461fa35afa19c971b0a2b7456a7b1db7b4eba9a8424666104925b78128"}, + {file = "pycryptodome-3.20.0-cp35-abi3-musllinux_1_1_i686.whl", hash = "sha256:acc2614e2e5346a4a4eab6e199203034924313626f9620b7b4b38e9ad74b7e0c"}, + {file = "pycryptodome-3.20.0-cp35-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:210ba1b647837bfc42dd5a813cdecb5b86193ae11a3f5d972b9a0ae2c7e9e4b4"}, + {file = "pycryptodome-3.20.0-cp35-abi3-win32.whl", hash = "sha256:8d6b98d0d83d21fb757a182d52940d028564efe8147baa9ce0f38d057104ae72"}, + {file = "pycryptodome-3.20.0-cp35-abi3-win_amd64.whl", hash = "sha256:9b3ae153c89a480a0ec402e23db8d8d84a3833b65fa4b15b81b83be9d637aab9"}, + {file = "pycryptodome-3.20.0-pp27-pypy_73-manylinux2010_x86_64.whl", hash = "sha256:4401564ebf37dfde45d096974c7a159b52eeabd9969135f0426907db367a652a"}, + {file = "pycryptodome-3.20.0-pp27-pypy_73-win32.whl", hash = "sha256:ec1f93feb3bb93380ab0ebf8b859e8e5678c0f010d2d78367cf6bc30bfeb148e"}, + {file = "pycryptodome-3.20.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:acae12b9ede49f38eb0ef76fdec2df2e94aad85ae46ec85be3648a57f0a7db04"}, + {file = "pycryptodome-3.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f47888542a0633baff535a04726948e876bf1ed880fddb7c10a736fa99146ab3"}, + {file = "pycryptodome-3.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e0e4a987d38cfc2e71b4a1b591bae4891eeabe5fa0f56154f576e26287bfdea"}, + {file = "pycryptodome-3.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:c18b381553638414b38705f07d1ef0a7cf301bc78a5f9bc17a957eb19446834b"}, + {file = "pycryptodome-3.20.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a60fedd2b37b4cb11ccb5d0399efe26db9e0dd149016c1cc6c8161974ceac2d6"}, + {file = "pycryptodome-3.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:405002eafad114a2f9a930f5db65feef7b53c4784495dd8758069b89baf68eab"}, + {file = "pycryptodome-3.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ab6ab0cb755154ad14e507d1df72de9897e99fd2d4922851a276ccc14f4f1a5"}, + {file = "pycryptodome-3.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:acf6e43fa75aca2d33e93409f2dafe386fe051818ee79ee8a3e21de9caa2ac9e"}, + {file = "pycryptodome-3.20.0.tar.gz", hash = "sha256:09609209ed7de61c2b560cc5c8c4fbf892f8b15b1faf7e4cbffac97db1fffda7"}, +] + +[[package]] +name = "pyflakes" +version = "3.1.0" +description = "passive checker of Python programs" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyflakes-3.1.0-py2.py3-none-any.whl", hash = "sha256:4132f6d49cb4dae6819e5379898f2b8cce3c5f23994194c24b77d5da2e36f774"}, + {file = "pyflakes-3.1.0.tar.gz", hash = "sha256:a0aae034c444db0071aa077972ba4768d40c830d9539fd45bf4cd3f8f6992efc"}, +] + +[[package]] +name = "pynacl" +version = "1.5.0" +description = "Python binding to the Networking and Cryptography (NaCl) library" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d"}, + {file = "PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b"}, + {file = "PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543"}, + {file = "PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93"}, + {file = "PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba"}, +] + +[package.dependencies] +cffi = ">=1.4.1" + +[package.extras] +docs = ["sphinx (>=1.6.5)", "sphinx-rtd-theme"] +tests = ["hypothesis (>=3.27.0)", "pytest (>=3.2.1,!=3.3.0)"] + +[[package]] +name = "pytablewriter" +version = "0.64.2" +description = "pytablewriter is a Python library to write a table in various formats: AsciiDoc / CSV / Elasticsearch / HTML / JavaScript / JSON / LaTeX / LDJSON / LTSV / Markdown / MediaWiki / NumPy / Excel / Pandas / Python / reStructuredText / SQLite / TOML / TSV / YAML." +optional = false +python-versions = ">=3.6" +files = [ + {file = "pytablewriter-0.64.2-py3-none-any.whl", hash = "sha256:c46d1ddc40ef4d084213a86f8626cee33b3aa0119535aa8555da64cb5b65e382"}, + {file = "pytablewriter-0.64.2.tar.gz", hash = "sha256:99409d401d6ef5f06d1bc40f265a8e3053afe4cbfbaf709f71124076afb40dbb"}, +] + +[package.dependencies] +DataProperty = ">=0.55.0,<2" +mbstrdecoder = ">=1.0.0,<2" +pathvalidate = ">=2.3.0,<3" +setuptools = ">=38.3.0" +tabledata = ">=1.3.0,<2" +tcolorpy = ">=0.0.5,<1" +typepy = {version = ">=1.2.0,<2", extras = ["datetime"]} + +[package.extras] +all = ["PyYAML (>=3.11,<7)", "SimpleSQLite (>=1.1.3,<2)", "XlsxWriter (>=0.9.6,<4)", "dominate (>=2.1.5,<3)", "elasticsearch (>=7.0.5,<8)", "loguru (>=0.4.1,<1)", "pytablereader (>=0.31.3,<2)", "pytablewriter-altrow-theme (>=0.0.2,<1)", "simplejson (>=3.8.1,<4)", "toml (>=0.9.3,<1)", "xlwt"] +docs = ["Sphinx (>=2.4)", "sphinx-rtd-theme"] +es = ["elasticsearch (>=7.0.5,<8)"] +es7 = ["elasticsearch (>=7.0.5,<8)"] +excel = ["XlsxWriter (>=0.9.6,<4)", "xlwt"] +from = ["pytablereader (>=0.31.3,<2)"] +html = ["dominate (>=2.1.5,<3)"] +logging = ["loguru (>=0.4.1,<1)"] +sqlite = ["SimpleSQLite (>=1.1.3,<2)"] +test = ["PyYAML (>=3.11,<7)", "SimpleSQLite (>=1.1.3,<2)", "XlsxWriter (>=0.9.6,<4)", "beautifulsoup4 (>=4.10)", "dominate (>=2.1.5,<3)", "elasticsearch (>=7.0.5,<8)", "idna (<3)", "loguru (>=0.4.1,<1)", "pytablereader (>=0.31.3,<2)", "pytablereader[excel,sqlite] (>=0.31.3)", "pytablewriter-altrow-theme (>=0.0.2,<1)", "pytest (>=6.0.1)", "pytest-md-report (>=0.1)", "simplejson (>=3.8.1,<4)", "sqliteschema (>=1.3.0)", "tablib (>=3.2.0)", "toml (>=0.9.3,<1)", "xlwt"] +theme = ["pytablewriter-altrow-theme (>=0.0.2,<1)"] +toml = ["toml (>=0.9.3,<1)"] +yaml = ["PyYAML (>=3.11,<7)"] + +[[package]] +name = "pytest" +version = "7.2.0" +description = "pytest: simple powerful testing with Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pytest-7.2.0-py3-none-any.whl", hash = "sha256:892f933d339f068883b6fd5a459f03d85bfcb355e4981e146d2c7616c21fef71"}, + {file = "pytest-7.2.0.tar.gz", hash = "sha256:c4014eb40e10f11f355ad4e3c2fb2c6c6d1919c73f3b5a433de4708202cade59"}, +] + +[package.dependencies] +attrs = ">=19.2.0" +colorama = {version = "*", markers = "sys_platform == \"win32\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<2.0" +tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} + +[package.extras] +testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"] + +[[package]] +name = "pytest-rerunfailures" +version = "10.3" +description = "pytest plugin to re-run tests to eliminate flaky failures" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pytest-rerunfailures-10.3.tar.gz", hash = "sha256:d8244d799f89a6edb5e57301ddaeb3b6f10d6691638d51e80b371311592e28c6"}, + {file = "pytest_rerunfailures-10.3-py3-none-any.whl", hash = "sha256:6be6f96510bf94b54198bf15bc5568fe2cdff88e83875912e22d29810acf65ff"}, +] + +[package.dependencies] +packaging = ">=17.1" +pytest = ">=5.3" + +[[package]] +name = "pytest-xdist" +version = "3.0.2" +description = "pytest xdist plugin for distributed testing and loop-on-failing modes" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pytest-xdist-3.0.2.tar.gz", hash = "sha256:688da9b814370e891ba5de650c9327d1a9d861721a524eb917e620eec3e90291"}, + {file = "pytest_xdist-3.0.2-py3-none-any.whl", hash = "sha256:9feb9a18e1790696ea23e1434fa73b325ed4998b0e9fcb221f16fd1945e6df1b"}, +] + +[package.dependencies] +execnet = ">=1.1" +pytest = ">=6.2.0" + +[package.extras] +psutil = ["psutil (>=3.0)"] +setproctitle = ["setproctitle"] +testing = ["filelock"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "pytz" +version = "2023.3.post1" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2023.3.post1-py2.py3-none-any.whl", hash = "sha256:ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7"}, + {file = "pytz-2023.3.post1.tar.gz", hash = "sha256:7b4fddbeb94a1eba4b557da24f19fdf9db575192544270a9101d8509f9f43d7b"}, +] + +[[package]] +name = "pywin32" +version = "306" +description = "Python for Window Extensions" +optional = false +python-versions = "*" +files = [ + {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, + {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, + {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, + {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, + {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, + {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, + {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, + {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, + {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, + {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, + {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, + {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, + {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, + {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.32.1" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.32.1-py3-none-any.whl", hash = "sha256:7e4dc12271d8e15612bfe35792f5ea1c40970dadf8624602e33db2758f7ee554"}, + {file = "referencing-0.32.1.tar.gz", hash = "sha256:3c57da0513e9563eb7e203ebe9bb3a1b509b042016433bd1e45a2853466c3dd3"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "regex" +version = "2023.12.25" +description = "Alternative regular expression module, to replace re." +optional = false +python-versions = ">=3.7" +files = [ + {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, + {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, + {file = "regex-2023.12.25-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d865984b3f71f6d0af64d0d88f5733521698f6c16f445bb09ce746c92c97c586"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e0eabac536b4cc7f57a5f3d095bfa557860ab912f25965e08fe1545e2ed8b4c"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c25a8ad70e716f96e13a637802813f65d8a6760ef48672aa3502f4c24ea8b400"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9b6d73353f777630626f403b0652055ebfe8ff142a44ec2cf18ae470395766e"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9cc99d6946d750eb75827cb53c4371b8b0fe89c733a94b1573c9dd16ea6c9e4"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88d1f7bef20c721359d8675f7d9f8e414ec5003d8f642fdfd8087777ff7f94b5"}, + {file = "regex-2023.12.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cb3fe77aec8f1995611f966d0c656fdce398317f850d0e6e7aebdfe61f40e1cd"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7aa47c2e9ea33a4a2a05f40fcd3ea36d73853a2aae7b4feab6fc85f8bf2c9704"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:df26481f0c7a3f8739fecb3e81bc9da3fcfae34d6c094563b9d4670b047312e1"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c40281f7d70baf6e0db0c2f7472b31609f5bc2748fe7275ea65a0b4601d9b392"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:d94a1db462d5690ebf6ae86d11c5e420042b9898af5dcf278bd97d6bda065423"}, + {file = "regex-2023.12.25-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ba1b30765a55acf15dce3f364e4928b80858fa8f979ad41f862358939bdd1f2f"}, + {file = "regex-2023.12.25-cp310-cp310-win32.whl", hash = "sha256:150c39f5b964e4d7dba46a7962a088fbc91f06e606f023ce57bb347a3b2d4630"}, + {file = "regex-2023.12.25-cp310-cp310-win_amd64.whl", hash = "sha256:09da66917262d9481c719599116c7dc0c321ffcec4b1f510c4f8a066f8768105"}, + {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1b9d811f72210fa9306aeb88385b8f8bcef0dfbf3873410413c00aa94c56c2b6"}, + {file = "regex-2023.12.25-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d902a43085a308cef32c0d3aea962524b725403fd9373dea18110904003bac97"}, + {file = "regex-2023.12.25-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d166eafc19f4718df38887b2bbe1467a4f74a9830e8605089ea7a30dd4da8887"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7ad32824b7f02bb3c9f80306d405a1d9b7bb89362d68b3c5a9be53836caebdb"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:636ba0a77de609d6510235b7f0e77ec494d2657108f777e8765efc060094c98c"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fda75704357805eb953a3ee15a2b240694a9a514548cd49b3c5124b4e2ad01b"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f72cbae7f6b01591f90814250e636065850c5926751af02bb48da94dfced7baa"}, + {file = "regex-2023.12.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db2a0b1857f18b11e3b0e54ddfefc96af46b0896fb678c85f63fb8c37518b3e7"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7502534e55c7c36c0978c91ba6f61703faf7ce733715ca48f499d3dbbd7657e0"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e8c7e08bb566de4faaf11984af13f6bcf6a08f327b13631d41d62592681d24fe"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:283fc8eed679758de38fe493b7d7d84a198b558942b03f017b1f94dda8efae80"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:f44dd4d68697559d007462b0a3a1d9acd61d97072b71f6d1968daef26bc744bd"}, + {file = "regex-2023.12.25-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:67d3ccfc590e5e7197750fcb3a2915b416a53e2de847a728cfa60141054123d4"}, + {file = "regex-2023.12.25-cp311-cp311-win32.whl", hash = "sha256:68191f80a9bad283432385961d9efe09d783bcd36ed35a60fb1ff3f1ec2efe87"}, + {file = "regex-2023.12.25-cp311-cp311-win_amd64.whl", hash = "sha256:7d2af3f6b8419661a0c421584cfe8aaec1c0e435ce7e47ee2a97e344b98f794f"}, + {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8a0ccf52bb37d1a700375a6b395bff5dd15c50acb745f7db30415bae3c2b0715"}, + {file = "regex-2023.12.25-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c3c4a78615b7762740531c27cf46e2f388d8d727d0c0c739e72048beb26c8a9d"}, + {file = "regex-2023.12.25-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ad83e7545b4ab69216cef4cc47e344d19622e28aabec61574b20257c65466d6a"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7a635871143661feccce3979e1727c4e094f2bdfd3ec4b90dfd4f16f571a87a"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d498eea3f581fbe1b34b59c697512a8baef88212f92e4c7830fcc1499f5b45a5"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:43f7cd5754d02a56ae4ebb91b33461dc67be8e3e0153f593c509e21d219c5060"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:51f4b32f793812714fd5307222a7f77e739b9bc566dc94a18126aba3b92b98a3"}, + {file = "regex-2023.12.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba99d8077424501b9616b43a2d208095746fb1284fc5ba490139651f971d39d9"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4bfc2b16e3ba8850e0e262467275dd4d62f0d045e0e9eda2bc65078c0110a11f"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8c2c19dae8a3eb0ea45a8448356ed561be843b13cbc34b840922ddf565498c1c"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:60080bb3d8617d96f0fb7e19796384cc2467447ef1c491694850ebd3670bc457"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b77e27b79448e34c2c51c09836033056a0547aa360c45eeeb67803da7b0eedaf"}, + {file = "regex-2023.12.25-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:518440c991f514331f4850a63560321f833979d145d7d81186dbe2f19e27ae3d"}, + {file = "regex-2023.12.25-cp312-cp312-win32.whl", hash = "sha256:e2610e9406d3b0073636a3a2e80db05a02f0c3169b5632022b4e81c0364bcda5"}, + {file = "regex-2023.12.25-cp312-cp312-win_amd64.whl", hash = "sha256:cc37b9aeebab425f11f27e5e9e6cf580be7206c6582a64467a14dda211abc232"}, + {file = "regex-2023.12.25-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:da695d75ac97cb1cd725adac136d25ca687da4536154cdc2815f576e4da11c69"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d126361607b33c4eb7b36debc173bf25d7805847346dd4d99b5499e1fef52bc7"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4719bb05094d7d8563a450cf8738d2e1061420f79cfcc1fa7f0a44744c4d8f73"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5dd58946bce44b53b06d94aa95560d0b243eb2fe64227cba50017a8d8b3cd3e2"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22a86d9fff2009302c440b9d799ef2fe322416d2d58fc124b926aa89365ec482"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2aae8101919e8aa05ecfe6322b278f41ce2994c4a430303c4cd163fef746e04f"}, + {file = "regex-2023.12.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e692296c4cc2873967771345a876bcfc1c547e8dd695c6b89342488b0ea55cd8"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:263ef5cc10979837f243950637fffb06e8daed7f1ac1e39d5910fd29929e489a"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d6f7e255e5fa94642a0724e35406e6cb7001c09d476ab5fce002f652b36d0c39"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:88ad44e220e22b63b0f8f81f007e8abbb92874d8ced66f32571ef8beb0643b2b"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:3a17d3ede18f9cedcbe23d2daa8a2cd6f59fe2bf082c567e43083bba3fb00347"}, + {file = "regex-2023.12.25-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d15b274f9e15b1a0b7a45d2ac86d1f634d983ca40d6b886721626c47a400bf39"}, + {file = "regex-2023.12.25-cp37-cp37m-win32.whl", hash = "sha256:ed19b3a05ae0c97dd8f75a5d8f21f7723a8c33bbc555da6bbe1f96c470139d3c"}, + {file = "regex-2023.12.25-cp37-cp37m-win_amd64.whl", hash = "sha256:a6d1047952c0b8104a1d371f88f4ab62e6275567d4458c1e26e9627ad489b445"}, + {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b43523d7bc2abd757119dbfb38af91b5735eea45537ec6ec3a5ec3f9562a1c53"}, + {file = "regex-2023.12.25-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:efb2d82f33b2212898f1659fb1c2e9ac30493ac41e4d53123da374c3b5541e64"}, + {file = "regex-2023.12.25-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b7fca9205b59c1a3d5031f7e64ed627a1074730a51c2a80e97653e3e9fa0d415"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086dd15e9435b393ae06f96ab69ab2d333f5d65cbe65ca5a3ef0ec9564dfe770"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e81469f7d01efed9b53740aedd26085f20d49da65f9c1f41e822a33992cb1590"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:34e4af5b27232f68042aa40a91c3b9bb4da0eeb31b7632e0091afc4310afe6cb"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9852b76ab558e45b20bf1893b59af64a28bd3820b0c2efc80e0a70a4a3ea51c1"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff100b203092af77d1a5a7abe085b3506b7eaaf9abf65b73b7d6905b6cb76988"}, + {file = "regex-2023.12.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cc038b2d8b1470364b1888a98fd22d616fba2b6309c5b5f181ad4483e0017861"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:094ba386bb5c01e54e14434d4caabf6583334090865b23ef58e0424a6286d3dc"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5cd05d0f57846d8ba4b71d9c00f6f37d6b97d5e5ef8b3c3840426a475c8f70f4"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:9aa1a67bbf0f957bbe096375887b2505f5d8ae16bf04488e8b0f334c36e31360"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:98a2636994f943b871786c9e82bfe7883ecdaba2ef5df54e1450fa9869d1f756"}, + {file = "regex-2023.12.25-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:37f8e93a81fc5e5bd8db7e10e62dc64261bcd88f8d7e6640aaebe9bc180d9ce2"}, + {file = "regex-2023.12.25-cp38-cp38-win32.whl", hash = "sha256:d78bd484930c1da2b9679290a41cdb25cc127d783768a0369d6b449e72f88beb"}, + {file = "regex-2023.12.25-cp38-cp38-win_amd64.whl", hash = "sha256:b521dcecebc5b978b447f0f69b5b7f3840eac454862270406a39837ffae4e697"}, + {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f7bc09bc9c29ebead055bcba136a67378f03d66bf359e87d0f7c759d6d4ffa31"}, + {file = "regex-2023.12.25-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e14b73607d6231f3cc4622809c196b540a6a44e903bcfad940779c80dffa7be7"}, + {file = "regex-2023.12.25-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9eda5f7a50141291beda3edd00abc2d4a5b16c29c92daf8d5bd76934150f3edc"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc6bb9aa69aacf0f6032c307da718f61a40cf970849e471254e0e91c56ffca95"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:298dc6354d414bc921581be85695d18912bea163a8b23cac9a2562bbcd5088b1"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2f4e475a80ecbd15896a976aa0b386c5525d0ed34d5c600b6d3ebac0a67c7ddf"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:531ac6cf22b53e0696f8e1d56ce2396311254eb806111ddd3922c9d937151dae"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:22f3470f7524b6da61e2020672df2f3063676aff444db1daa283c2ea4ed259d6"}, + {file = "regex-2023.12.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:89723d2112697feaa320c9d351e5f5e7b841e83f8b143dba8e2d2b5f04e10923"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0ecf44ddf9171cd7566ef1768047f6e66975788258b1c6c6ca78098b95cf9a3d"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:905466ad1702ed4acfd67a902af50b8db1feeb9781436372261808df7a2a7bca"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:4558410b7a5607a645e9804a3e9dd509af12fb72b9825b13791a37cd417d73a5"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:7e316026cc1095f2a3e8cc012822c99f413b702eaa2ca5408a513609488cb62f"}, + {file = "regex-2023.12.25-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:3b1de218d5375cd6ac4b5493e0b9f3df2be331e86520f23382f216c137913d20"}, + {file = "regex-2023.12.25-cp39-cp39-win32.whl", hash = "sha256:11a963f8e25ab5c61348d090bf1b07f1953929c13bd2309a0662e9ff680763c9"}, + {file = "regex-2023.12.25-cp39-cp39-win_amd64.whl", hash = "sha256:e693e233ac92ba83a87024e1d32b5f9ab15ca55ddd916d878146f4e3406b5c91"}, + {file = "regex-2023.12.25.tar.gz", hash = "sha256:29171aa128da69afdf4bde412d5bedc335f2ca8fcfe4489038577d05f16181e5"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rlp" +version = "4.0.0" +description = "rlp: A package for Recursive Length Prefix encoding and decoding" +optional = false +python-versions = ">=3.8, <4" +files = [ + {file = "rlp-4.0.0-py3-none-any.whl", hash = "sha256:1747fd933e054e6d25abfe591be92e19a4193a56c93981c05bd0f84dfe279f14"}, + {file = "rlp-4.0.0.tar.gz", hash = "sha256:61a5541f86e4684ab145cb849a5929d2ced8222930a570b3941cf4af16b72a78"}, +] + +[package.dependencies] +eth-utils = ">=2" + +[package.extras] +dev = ["build (>=0.9.0)", "bumpversion (>=0.5.3)", "hypothesis (==5.19.0)", "ipython", "pre-commit (>=3.4.0)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)", "sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=4.0.0)", "twine", "wheel"] +docs = ["sphinx (>=6.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +rust-backend = ["rusty-rlp (>=0.2.1,<0.3)"] +test = ["hypothesis (==5.19.0)", "pytest (>=7.0.0)", "pytest-xdist (>=2.4.0)"] + +[[package]] +name = "rpds-py" +version = "0.17.1" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.17.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:4128980a14ed805e1b91a7ed551250282a8ddf8201a4e9f8f5b7e6225f54170d"}, + {file = "rpds_py-0.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ff1dcb8e8bc2261a088821b2595ef031c91d499a0c1b031c152d43fe0a6ecec8"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d65e6b4f1443048eb7e833c2accb4fa7ee67cc7d54f31b4f0555b474758bee55"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a71169d505af63bb4d20d23a8fbd4c6ce272e7bce6cc31f617152aa784436f29"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:436474f17733c7dca0fbf096d36ae65277e8645039df12a0fa52445ca494729d"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10162fe3f5f47c37ebf6d8ff5a2368508fe22007e3077bf25b9c7d803454d921"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:720215373a280f78a1814becb1312d4e4d1077b1202a56d2b0815e95ccb99ce9"}, + {file = "rpds_py-0.17.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:70fcc6c2906cfa5c6a552ba7ae2ce64b6c32f437d8f3f8eea49925b278a61453"}, + {file = "rpds_py-0.17.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:91e5a8200e65aaac342a791272c564dffcf1281abd635d304d6c4e6b495f29dc"}, + {file = "rpds_py-0.17.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:99f567dae93e10be2daaa896e07513dd4bf9c2ecf0576e0533ac36ba3b1d5394"}, + {file = "rpds_py-0.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:24e4900a6643f87058a27320f81336d527ccfe503984528edde4bb660c8c8d59"}, + {file = "rpds_py-0.17.1-cp310-none-win32.whl", hash = "sha256:0bfb09bf41fe7c51413f563373e5f537eaa653d7adc4830399d4e9bdc199959d"}, + {file = "rpds_py-0.17.1-cp310-none-win_amd64.whl", hash = "sha256:20de7b7179e2031a04042e85dc463a93a82bc177eeba5ddd13ff746325558aa6"}, + {file = "rpds_py-0.17.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:65dcf105c1943cba45d19207ef51b8bc46d232a381e94dd38719d52d3980015b"}, + {file = "rpds_py-0.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:01f58a7306b64e0a4fe042047dd2b7d411ee82e54240284bab63e325762c1147"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:071bc28c589b86bc6351a339114fb7a029f5cddbaca34103aa573eba7b482382"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ae35e8e6801c5ab071b992cb2da958eee76340e6926ec693b5ff7d6381441745"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149c5cd24f729e3567b56e1795f74577aa3126c14c11e457bec1b1c90d212e38"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e796051f2070f47230c745d0a77a91088fbee2cc0502e9b796b9c6471983718c"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e820ee1004327609b28db8307acc27f5f2e9a0b185b2064c5f23e815f248f8"}, + {file = "rpds_py-0.17.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1957a2ab607f9added64478a6982742eb29f109d89d065fa44e01691a20fc20a"}, + {file = "rpds_py-0.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8587fd64c2a91c33cdc39d0cebdaf30e79491cc029a37fcd458ba863f8815383"}, + {file = "rpds_py-0.17.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4dc889a9d8a34758d0fcc9ac86adb97bab3fb7f0c4d29794357eb147536483fd"}, + {file = "rpds_py-0.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2953937f83820376b5979318840f3ee47477d94c17b940fe31d9458d79ae7eea"}, + {file = "rpds_py-0.17.1-cp311-none-win32.whl", hash = "sha256:1bfcad3109c1e5ba3cbe2f421614e70439f72897515a96c462ea657261b96518"}, + {file = "rpds_py-0.17.1-cp311-none-win_amd64.whl", hash = "sha256:99da0a4686ada4ed0f778120a0ea8d066de1a0a92ab0d13ae68492a437db78bf"}, + {file = "rpds_py-0.17.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:1dc29db3900cb1bb40353772417800f29c3d078dbc8024fd64655a04ee3c4bdf"}, + {file = "rpds_py-0.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:82ada4a8ed9e82e443fcef87e22a3eed3654dd3adf6e3b3a0deb70f03e86142a"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d36b2b59e8cc6e576f8f7b671e32f2ff43153f0ad6d0201250a7c07f25d570e"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3677fcca7fb728c86a78660c7fb1b07b69b281964673f486ae72860e13f512ad"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:516fb8c77805159e97a689e2f1c80655c7658f5af601c34ffdb916605598cda2"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df3b6f45ba4515632c5064e35ca7f31d51d13d1479673185ba8f9fefbbed58b9"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a967dd6afda7715d911c25a6ba1517975acd8d1092b2f326718725461a3d33f9"}, + {file = "rpds_py-0.17.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dbbb95e6fc91ea3102505d111b327004d1c4ce98d56a4a02e82cd451f9f57140"}, + {file = "rpds_py-0.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:02866e060219514940342a1f84303a1ef7a1dad0ac311792fbbe19b521b489d2"}, + {file = "rpds_py-0.17.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:2528ff96d09f12e638695f3a2e0c609c7b84c6df7c5ae9bfeb9252b6fa686253"}, + {file = "rpds_py-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bd345a13ce06e94c753dab52f8e71e5252aec1e4f8022d24d56decd31e1b9b23"}, + {file = "rpds_py-0.17.1-cp312-none-win32.whl", hash = "sha256:2a792b2e1d3038daa83fa474d559acfd6dc1e3650ee93b2662ddc17dbff20ad1"}, + {file = "rpds_py-0.17.1-cp312-none-win_amd64.whl", hash = "sha256:292f7344a3301802e7c25c53792fae7d1593cb0e50964e7bcdcc5cf533d634e3"}, + {file = "rpds_py-0.17.1-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:8ffe53e1d8ef2520ebcf0c9fec15bb721da59e8ef283b6ff3079613b1e30513d"}, + {file = "rpds_py-0.17.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4341bd7579611cf50e7b20bb8c2e23512a3dc79de987a1f411cb458ab670eb90"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4eb548daf4836e3b2c662033bfbfc551db58d30fd8fe660314f86bf8510b93"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b686f25377f9c006acbac63f61614416a6317133ab7fafe5de5f7dc8a06d42eb"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4e21b76075c01d65d0f0f34302b5a7457d95721d5e0667aea65e5bb3ab415c25"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b86b21b348f7e5485fae740d845c65a880f5d1eda1e063bc59bef92d1f7d0c55"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f175e95a197f6a4059b50757a3dca33b32b61691bdbd22c29e8a8d21d3914cae"}, + {file = "rpds_py-0.17.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1701fc54460ae2e5efc1dd6350eafd7a760f516df8dbe51d4a1c79d69472fbd4"}, + {file = "rpds_py-0.17.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:9051e3d2af8f55b42061603e29e744724cb5f65b128a491446cc029b3e2ea896"}, + {file = "rpds_py-0.17.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:7450dbd659fed6dd41d1a7d47ed767e893ba402af8ae664c157c255ec6067fde"}, + {file = "rpds_py-0.17.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5a024fa96d541fd7edaa0e9d904601c6445e95a729a2900c5aec6555fe921ed6"}, + {file = "rpds_py-0.17.1-cp38-none-win32.whl", hash = "sha256:da1ead63368c04a9bded7904757dfcae01eba0e0f9bc41d3d7f57ebf1c04015a"}, + {file = "rpds_py-0.17.1-cp38-none-win_amd64.whl", hash = "sha256:841320e1841bb53fada91c9725e766bb25009cfd4144e92298db296fb6c894fb"}, + {file = "rpds_py-0.17.1-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:f6c43b6f97209e370124baf2bf40bb1e8edc25311a158867eb1c3a5d449ebc7a"}, + {file = "rpds_py-0.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5e7d63ec01fe7c76c2dbb7e972fece45acbb8836e72682bde138e7e039906e2c"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81038ff87a4e04c22e1d81f947c6ac46f122e0c80460b9006e6517c4d842a6ec"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:810685321f4a304b2b55577c915bece4c4a06dfe38f6e62d9cc1d6ca8ee86b99"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:25f071737dae674ca8937a73d0f43f5a52e92c2d178330b4c0bb6ab05586ffa6"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa5bfb13f1e89151ade0eb812f7b0d7a4d643406caaad65ce1cbabe0a66d695f"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfe07308b311a8293a0d5ef4e61411c5c20f682db6b5e73de6c7c8824272c256"}, + {file = "rpds_py-0.17.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a000133a90eea274a6f28adc3084643263b1e7c1a5a66eb0a0a7a36aa757ed74"}, + {file = "rpds_py-0.17.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5d0e8a6434a3fbf77d11448c9c25b2f25244226cfbec1a5159947cac5b8c5fa4"}, + {file = "rpds_py-0.17.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:efa767c220d94aa4ac3a6dd3aeb986e9f229eaf5bce92d8b1b3018d06bed3772"}, + {file = "rpds_py-0.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:dbc56680ecf585a384fbd93cd42bc82668b77cb525343170a2d86dafaed2a84b"}, + {file = "rpds_py-0.17.1-cp39-none-win32.whl", hash = "sha256:270987bc22e7e5a962b1094953ae901395e8c1e1e83ad016c5cfcfff75a15a3f"}, + {file = "rpds_py-0.17.1-cp39-none-win_amd64.whl", hash = "sha256:2a7b2f2f56a16a6d62e55354dd329d929560442bd92e87397b7a9586a32e3e76"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3264e3e858de4fc601741498215835ff324ff2482fd4e4af61b46512dd7fc83"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:f2f3b28b40fddcb6c1f1f6c88c6f3769cd933fa493ceb79da45968a21dccc920"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9584f8f52010295a4a417221861df9bea4c72d9632562b6e59b3c7b87a1522b7"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c64602e8be701c6cfe42064b71c84ce62ce66ddc6422c15463fd8127db3d8066"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:060f412230d5f19fc8c8b75f315931b408d8ebf56aec33ef4168d1b9e54200b1"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b9412abdf0ba70faa6e2ee6c0cc62a8defb772e78860cef419865917d86c7342"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9737bdaa0ad33d34c0efc718741abaafce62fadae72c8b251df9b0c823c63b22"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9f0e4dc0f17dcea4ab9d13ac5c666b6b5337042b4d8f27e01b70fae41dd65c57"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1db228102ab9d1ff4c64148c96320d0be7044fa28bd865a9ce628ce98da5973d"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:d8bbd8e56f3ba25a7d0cf980fc42b34028848a53a0e36c9918550e0280b9d0b6"}, + {file = "rpds_py-0.17.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:be22ae34d68544df293152b7e50895ba70d2a833ad9566932d750d3625918b82"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bf046179d011e6114daf12a534d874958b039342b347348a78b7cdf0dd9d6041"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:1a746a6d49665058a5896000e8d9d2f1a6acba8a03b389c1e4c06e11e0b7f40d"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0b8bf5b8db49d8fd40f54772a1dcf262e8be0ad2ab0206b5a2ec109c176c0a4"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f7f4cb1f173385e8a39c29510dd11a78bf44e360fb75610594973f5ea141028b"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7fbd70cb8b54fe745301921b0816c08b6d917593429dfc437fd024b5ba713c58"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bdf1303df671179eaf2cb41e8515a07fc78d9d00f111eadbe3e14262f59c3d0"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fad059a4bd14c45776600d223ec194e77db6c20255578bb5bcdd7c18fd169361"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3664d126d3388a887db44c2e293f87d500c4184ec43d5d14d2d2babdb4c64cad"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:698ea95a60c8b16b58be9d854c9f993c639f5c214cf9ba782eca53a8789d6b19"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:c3d2010656999b63e628a3c694f23020322b4178c450dc478558a2b6ef3cb9bb"}, + {file = "rpds_py-0.17.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:938eab7323a736533f015e6069a7d53ef2dcc841e4e533b782c2bfb9fb12d84b"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1e626b365293a2142a62b9a614e1f8e331b28f3ca57b9f05ebbf4cf2a0f0bdc5"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:380e0df2e9d5d5d339803cfc6d183a5442ad7ab3c63c2a0982e8c824566c5ccc"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b760a56e080a826c2e5af09002c1a037382ed21d03134eb6294812dda268c811"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5576ee2f3a309d2bb403ec292d5958ce03953b0e57a11d224c1f134feaf8c40f"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f3c3461ebb4c4f1bbc70b15d20b565759f97a5aaf13af811fcefc892e9197ba"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:637b802f3f069a64436d432117a7e58fab414b4e27a7e81049817ae94de45d8d"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffee088ea9b593cc6160518ba9bd319b5475e5f3e578e4552d63818773c6f56a"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3ac732390d529d8469b831949c78085b034bff67f584559340008d0f6041a049"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:93432e747fb07fa567ad9cc7aaadd6e29710e515aabf939dfbed8046041346c6"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:7b7d9ca34542099b4e185b3c2a2b2eda2e318a7dbde0b0d83357a6d4421b5296"}, + {file = "rpds_py-0.17.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:0387ce69ba06e43df54e43968090f3626e231e4bc9150e4c3246947567695f68"}, + {file = "rpds_py-0.17.1.tar.gz", hash = "sha256:0210b2668f24c078307260bf88bdac9d6f1093635df5123789bfee4d8d7fc8e7"}, +] + +[[package]] +name = "scalecodec" +version = "1.2.7" +description = "Python SCALE Codec Library" +optional = false +python-versions = ">=3.6, <4" +files = [ + {file = "scalecodec-1.2.7-py3-none-any.whl", hash = "sha256:2d951041b10429e7bcee9a08b693d151add002875cc961ab90cd7a844d01bdfd"}, + {file = "scalecodec-1.2.7.tar.gz", hash = "sha256:5215354a5e8f12f8f647cb0cced572873c8a91943ad7d3e2c1e3d7a28be65ade"}, +] + +[package.dependencies] +base58 = ">=2.0.1" +more-itertools = "*" +requests = ">=2.24.0" + +[package.extras] +test = ["coverage", "pytest"] + +[[package]] +name = "setuptools" +version = "69.0.3" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-69.0.3-py3-none-any.whl", hash = "sha256:385eb4edd9c9d5c17540511303e39a147ce2fc04bc55289c322b9e5904fe2c05"}, + {file = "setuptools-69.0.3.tar.gz", hash = "sha256:be1af57fc409f93647f2e8e4573a142ed38724b8cdd389706a867bb4efcf1e78"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "packaging (>=23.1)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "substrate-interface" +version = "1.7.4" +description = "Library for interfacing with a Substrate node" +optional = false +python-versions = ">=3.7, <4" +files = [ + {file = "substrate-interface-1.7.4.tar.gz", hash = "sha256:a8f1e28b058caedae116d65316e3532adf6fea8058df9d75c87de57971fff98e"}, + {file = "substrate_interface-1.7.4-py3-none-any.whl", hash = "sha256:380be2111aed6d836cabd6c7c660a92f3f1c2f0c8c270553348e0157f5c81e74"}, +] + +[package.dependencies] +base58 = ">=1.0.3,<3" +certifi = ">=2019.3.9" +ecdsa = ">=0.17.0,<1" +eth-keys = ">=0.2.1,<1" +eth-utils = ">=1.3.0,<3" +idna = ">=2.1.0,<4" +py-bip39-bindings = ">=0.1.9,<1" +py-ed25519-zebra-bindings = ">=1.0,<2" +py-sr25519-bindings = ">=0.2.0,<1" +pycryptodome = ">=3.11.0,<4" +PyNaCl = ">=1.0.1,<2" +requests = ">=2.21.0,<3" +scalecodec = ">=1.2.6,<1.3" +websocket-client = ">=0.57.0,<2" +xxhash = ">=1.3.0,<4" + +[package.extras] +test = ["coverage", "pytest"] + +[[package]] +name = "tabledata" +version = "1.3.3" +description = "tabledata is a Python library to represent tabular data. Used for pytablewriter/pytablereader/SimpleSQLite/etc." +optional = false +python-versions = ">=3.7" +files = [ + {file = "tabledata-1.3.3-py3-none-any.whl", hash = "sha256:4abad1c996d8607e23b045b44dc0c5f061668f3c37585302c5f6c84c93a89962"}, + {file = "tabledata-1.3.3.tar.gz", hash = "sha256:c90daaba9a408e4397934b3ff2f6c06797d5289676420bf520c741ad43e6ff91"}, +] + +[package.dependencies] +DataProperty = ">=1.0.1,<2" +typepy = ">=1.2.0,<2" + +[package.extras] +logging = ["loguru (>=0.4.1,<1)"] +test = ["pytablewriter (>=0.46)", "pytest"] + +[[package]] +name = "tcolorpy" +version = "0.1.4" +description = "tcolopy is a Python library to apply true color for terminal text." +optional = false +python-versions = ">=3.7" +files = [ + {file = "tcolorpy-0.1.4-py3-none-any.whl", hash = "sha256:d0926480aa5012f34877d69fc3b670f207dc165674e68ad07458fa6ee5b12724"}, + {file = "tcolorpy-0.1.4.tar.gz", hash = "sha256:f0dceb1cb95e554cee63024b3cd2fd8d4628c568773de2d1e6b4f0478461901c"}, +] + +[package.extras] +test = ["pytest (>=6.0.1)", "pytest-md-report (>=0.4.1)"] + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "toolz" +version = "0.12.0" +description = "List processing tools and functional utilities" +optional = false +python-versions = ">=3.5" +files = [ + {file = "toolz-0.12.0-py3-none-any.whl", hash = "sha256:2059bd4148deb1884bb0eb770a3cde70e7f954cfbbdc2285f1f2de01fd21eb6f"}, + {file = "toolz-0.12.0.tar.gz", hash = "sha256:88c570861c440ee3f2f6037c4654613228ff40c93a6c25e0eba70d17282c6194"}, +] + +[[package]] +name = "typepy" +version = "1.3.2" +description = "typepy is a Python library for variable type checker/validator/converter at a run time." +optional = false +python-versions = ">=3.7" +files = [ + {file = "typepy-1.3.2-py3-none-any.whl", hash = "sha256:d5d1022a424132622993800f1d2cd16cfdb691ac4e3b9c325f0fcb37799db1ae"}, + {file = "typepy-1.3.2.tar.gz", hash = "sha256:b69fd48b9f50cdb3809906eef36b855b3134ff66c8893a4f8580abddb0b39517"}, +] + +[package.dependencies] +mbstrdecoder = ">=1.0.0,<2" +packaging = {version = "*", optional = true, markers = "extra == \"datetime\""} +python-dateutil = {version = ">=2.8.0,<3.0.0", optional = true, markers = "extra == \"datetime\""} +pytz = {version = ">=2018.9", optional = true, markers = "extra == \"datetime\""} + +[package.extras] +datetime = ["packaging", "python-dateutil (>=2.8.0,<3.0.0)", "pytz (>=2018.9)"] +test = ["packaging", "pytest (>=6.0.1)", "python-dateutil (>=2.8.0,<3.0.0)", "pytz (>=2018.9)", "tcolorpy"] + +[[package]] +name = "typing-extensions" +version = "4.9.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, + {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, +] + +[[package]] +name = "urllib3" +version = "2.1.0" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.1.0-py3-none-any.whl", hash = "sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3"}, + {file = "urllib3-2.1.0.tar.gz", hash = "sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "virtualenv" +version = "20.25.0" +description = "Virtual Python Environment builder" +optional = false +python-versions = ">=3.7" +files = [ + {file = "virtualenv-20.25.0-py3-none-any.whl", hash = "sha256:4238949c5ffe6876362d9c0180fc6c3a824a7b12b80604eeb8085f2ed7460de3"}, + {file = "virtualenv-20.25.0.tar.gz", hash = "sha256:bf51c0d9c7dd63ea8e44086fa1e4fb1093a31e963b86959257378aef020e1f1b"}, +] + +[package.dependencies] +distlib = ">=0.3.7,<1" +filelock = ">=3.12.2,<4" +platformdirs = ">=3.9.1,<5" + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.2)", "sphinx-argparse (>=0.4)", "sphinxcontrib-towncrier (>=0.2.1a0)", "towncrier (>=23.6)"] +test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess (>=1)", "flaky (>=3.7)", "packaging (>=23.1)", "pytest (>=7.4)", "pytest-env (>=0.8.2)", "pytest-freezer (>=0.4.8)", "pytest-mock (>=3.11.1)", "pytest-randomly (>=3.12)", "pytest-timeout (>=2.1)", "setuptools (>=68)", "time-machine (>=2.10)"] + +[[package]] +name = "web3" +version = "6.2.0" +description = "web3.py" +optional = false +python-versions = ">=3.7.2" +files = [ + {file = "web3-6.2.0-py3-none-any.whl", hash = "sha256:ca860ad23b1f71384620659f17a374e5850ab3c1bb928a09f0103ee25e3d4c1b"}, + {file = "web3-6.2.0.tar.gz", hash = "sha256:7695ee81162c644de0dfd0f5372f96a73be557b46365d218f581ca10197c6389"}, +] + +[package.dependencies] +aiohttp = ">=3.7.4.post0" +eth-abi = ">=4.0.0" +eth-account = ">=0.8.0" +eth-hash = {version = ">=0.5.1", extras = ["pycryptodome"]} +eth-typing = ">=3.0.0" +eth-utils = ">=2.1.0" +hexbytes = ">=0.1.0" +jsonschema = ">=4.0.0" +lru-dict = ">=1.1.6" +protobuf = ">=4.21.6" +pywin32 = {version = ">=223", markers = "platform_system == \"Windows\""} +requests = ">=2.16.0" +websockets = ">=10.0.0" + +[package.extras] +dev = ["black (>=22.1.0)", "build (>=0.9.0)", "bumpversion", "eth-tester[py-evm] (==v0.8.0-b.3)", "flake8 (==3.8.3)", "flaky (>=3.7.0)", "hypothesis (>=3.31.2)", "importlib-metadata (<5.0)", "ipfshttpclient (==0.8.0a2)", "isort (>=5.11.0)", "mypy (==0.910)", "pluggy (==0.13.1)", "py-geth (>=3.11.0)", "pytest (>=7.0.0)", "pytest-asyncio (>=0.18.1)", "pytest-mock (>=1.10)", "pytest-watch (>=4.2)", "pytest-xdist (>=1.29)", "setuptools (>=38.6.0)", "sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)", "tox (>=3.18.0)", "tqdm (>4.32)", "twine (>=1.13)", "types-protobuf (==3.19.13)", "types-requests (>=2.26.1)", "types-setuptools (>=57.4.4)", "when-changed (>=0.3.0)"] +docs = ["sphinx (>=5.0.0)", "sphinx-rtd-theme (>=1.0.0)", "towncrier (>=21,<22)"] +ipfs = ["ipfshttpclient (==0.8.0a2)"] +linter = ["black (>=22.1.0)", "flake8 (==3.8.3)", "isort (>=5.11.0)", "mypy (==0.910)", "types-protobuf (==3.19.13)", "types-requests (>=2.26.1)", "types-setuptools (>=57.4.4)"] +tester = ["eth-tester[py-evm] (==v0.8.0-b.3)", "py-geth (>=3.11.0)"] + +[[package]] +name = "websocket-client" +version = "1.7.0" +description = "WebSocket client for Python with low level API options" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websocket-client-1.7.0.tar.gz", hash = "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6"}, + {file = "websocket_client-1.7.0-py3-none-any.whl", hash = "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588"}, +] + +[package.extras] +docs = ["Sphinx (>=6.0)", "sphinx-rtd-theme (>=1.1.0)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + +[[package]] +name = "websockets" +version = "12.0" +description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websockets-12.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d554236b2a2006e0ce16315c16eaa0d628dab009c33b63ea03f41c6107958374"}, + {file = "websockets-12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2d225bb6886591b1746b17c0573e29804619c8f755b5598d875bb4235ea639be"}, + {file = "websockets-12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eb809e816916a3b210bed3c82fb88eaf16e8afcf9c115ebb2bacede1797d2547"}, + {file = "websockets-12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c588f6abc13f78a67044c6b1273a99e1cf31038ad51815b3b016ce699f0d75c2"}, + {file = "websockets-12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5aa9348186d79a5f232115ed3fa9020eab66d6c3437d72f9d2c8ac0c6858c558"}, + {file = "websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6350b14a40c95ddd53e775dbdbbbc59b124a5c8ecd6fbb09c2e52029f7a9f480"}, + {file = "websockets-12.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:70ec754cc2a769bcd218ed8d7209055667b30860ffecb8633a834dde27d6307c"}, + {file = "websockets-12.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6e96f5ed1b83a8ddb07909b45bd94833b0710f738115751cdaa9da1fb0cb66e8"}, + {file = "websockets-12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4d87be612cbef86f994178d5186add3d94e9f31cc3cb499a0482b866ec477603"}, + {file = "websockets-12.0-cp310-cp310-win32.whl", hash = "sha256:befe90632d66caaf72e8b2ed4d7f02b348913813c8b0a32fae1cc5fe3730902f"}, + {file = "websockets-12.0-cp310-cp310-win_amd64.whl", hash = "sha256:363f57ca8bc8576195d0540c648aa58ac18cf85b76ad5202b9f976918f4219cf"}, + {file = "websockets-12.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5d873c7de42dea355d73f170be0f23788cf3fa9f7bed718fd2830eefedce01b4"}, + {file = "websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3f61726cae9f65b872502ff3c1496abc93ffbe31b278455c418492016e2afc8f"}, + {file = "websockets-12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed2fcf7a07334c77fc8a230755c2209223a7cc44fc27597729b8ef5425aa61a3"}, + {file = "websockets-12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e332c210b14b57904869ca9f9bf4ca32f5427a03eeb625da9b616c85a3a506c"}, + {file = "websockets-12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5693ef74233122f8ebab026817b1b37fe25c411ecfca084b29bc7d6efc548f45"}, + {file = "websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e9e7db18b4539a29cc5ad8c8b252738a30e2b13f033c2d6e9d0549b45841c04"}, + {file = "websockets-12.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6e2df67b8014767d0f785baa98393725739287684b9f8d8a1001eb2839031447"}, + {file = "websockets-12.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:bea88d71630c5900690fcb03161ab18f8f244805c59e2e0dc4ffadae0a7ee0ca"}, + {file = "websockets-12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dff6cdf35e31d1315790149fee351f9e52978130cef6c87c4b6c9b3baf78bc53"}, + {file = "websockets-12.0-cp311-cp311-win32.whl", hash = "sha256:3e3aa8c468af01d70332a382350ee95f6986db479ce7af14d5e81ec52aa2b402"}, + {file = "websockets-12.0-cp311-cp311-win_amd64.whl", hash = "sha256:25eb766c8ad27da0f79420b2af4b85d29914ba0edf69f547cc4f06ca6f1d403b"}, + {file = "websockets-12.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0e6e2711d5a8e6e482cacb927a49a3d432345dfe7dea8ace7b5790df5932e4df"}, + {file = "websockets-12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:dbcf72a37f0b3316e993e13ecf32f10c0e1259c28ffd0a85cee26e8549595fbc"}, + {file = "websockets-12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12743ab88ab2af1d17dd4acb4645677cb7063ef4db93abffbf164218a5d54c6b"}, + {file = "websockets-12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b645f491f3c48d3f8a00d1fce07445fab7347fec54a3e65f0725d730d5b99cb"}, + {file = "websockets-12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9893d1aa45a7f8b3bc4510f6ccf8db8c3b62120917af15e3de247f0780294b92"}, + {file = "websockets-12.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f38a7b376117ef7aff996e737583172bdf535932c9ca021746573bce40165ed"}, + {file = "websockets-12.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:f764ba54e33daf20e167915edc443b6f88956f37fb606449b4a5b10ba42235a5"}, + {file = "websockets-12.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1e4b3f8ea6a9cfa8be8484c9221ec0257508e3a1ec43c36acdefb2a9c3b00aa2"}, + {file = "websockets-12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9fdf06fd06c32205a07e47328ab49c40fc1407cdec801d698a7c41167ea45113"}, + {file = "websockets-12.0-cp312-cp312-win32.whl", hash = "sha256:baa386875b70cbd81798fa9f71be689c1bf484f65fd6fb08d051a0ee4e79924d"}, + {file = "websockets-12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ae0a5da8f35a5be197f328d4727dbcfafa53d1824fac3d96cdd3a642fe09394f"}, + {file = "websockets-12.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5f6ffe2c6598f7f7207eef9a1228b6f5c818f9f4d53ee920aacd35cec8110438"}, + {file = "websockets-12.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9edf3fc590cc2ec20dc9d7a45108b5bbaf21c0d89f9fd3fd1685e223771dc0b2"}, + {file = "websockets-12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8572132c7be52632201a35f5e08348137f658e5ffd21f51f94572ca6c05ea81d"}, + {file = "websockets-12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:604428d1b87edbf02b233e2c207d7d528460fa978f9e391bd8aaf9c8311de137"}, + {file = "websockets-12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1a9d160fd080c6285e202327aba140fc9a0d910b09e423afff4ae5cbbf1c7205"}, + {file = "websockets-12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87b4aafed34653e465eb77b7c93ef058516cb5acf3eb21e42f33928616172def"}, + {file = "websockets-12.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b2ee7288b85959797970114deae81ab41b731f19ebcd3bd499ae9ca0e3f1d2c8"}, + {file = "websockets-12.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:7fa3d25e81bfe6a89718e9791128398a50dec6d57faf23770787ff441d851967"}, + {file = "websockets-12.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a571f035a47212288e3b3519944f6bf4ac7bc7553243e41eac50dd48552b6df7"}, + {file = "websockets-12.0-cp38-cp38-win32.whl", hash = "sha256:3c6cc1360c10c17463aadd29dd3af332d4a1adaa8796f6b0e9f9df1fdb0bad62"}, + {file = "websockets-12.0-cp38-cp38-win_amd64.whl", hash = "sha256:1bf386089178ea69d720f8db6199a0504a406209a0fc23e603b27b300fdd6892"}, + {file = "websockets-12.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab3d732ad50a4fbd04a4490ef08acd0517b6ae6b77eb967251f4c263011a990d"}, + {file = "websockets-12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a1d9697f3337a89691e3bd8dc56dea45a6f6d975f92e7d5f773bc715c15dde28"}, + {file = "websockets-12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1df2fbd2c8a98d38a66f5238484405b8d1d16f929bb7a33ed73e4801222a6f53"}, + {file = "websockets-12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23509452b3bc38e3a057382c2e941d5ac2e01e251acce7adc74011d7d8de434c"}, + {file = "websockets-12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e5fc14ec6ea568200ea4ef46545073da81900a2b67b3e666f04adf53ad452ec"}, + {file = "websockets-12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46e71dbbd12850224243f5d2aeec90f0aaa0f2dde5aeeb8fc8df21e04d99eff9"}, + {file = "websockets-12.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b81f90dcc6c85a9b7f29873beb56c94c85d6f0dac2ea8b60d995bd18bf3e2aae"}, + {file = "websockets-12.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a02413bc474feda2849c59ed2dfb2cddb4cd3d2f03a2fedec51d6e959d9b608b"}, + {file = "websockets-12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bbe6013f9f791944ed31ca08b077e26249309639313fff132bfbf3ba105673b9"}, + {file = "websockets-12.0-cp39-cp39-win32.whl", hash = "sha256:cbe83a6bbdf207ff0541de01e11904827540aa069293696dd528a6640bd6a5f6"}, + {file = "websockets-12.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc4e7fa5414512b481a2483775a8e8be7803a35b30ca805afa4998a84f9fd9e8"}, + {file = "websockets-12.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:248d8e2446e13c1d4326e0a6a4e9629cb13a11195051a73acf414812700badbd"}, + {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f44069528d45a933997a6fef143030d8ca8042f0dfaad753e2906398290e2870"}, + {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4e37d36f0d19f0a4413d3e18c0d03d0c268ada2061868c1e6f5ab1a6d575077"}, + {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d829f975fc2e527a3ef2f9c8f25e553eb7bc779c6665e8e1d52aa22800bb38b"}, + {file = "websockets-12.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:2c71bd45a777433dd9113847af751aae36e448bc6b8c361a566cb043eda6ec30"}, + {file = "websockets-12.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0bee75f400895aef54157b36ed6d3b308fcab62e5260703add87f44cee9c82a6"}, + {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:423fc1ed29f7512fceb727e2d2aecb952c46aa34895e9ed96071821309951123"}, + {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27a5e9964ef509016759f2ef3f2c1e13f403725a5e6a1775555994966a66e931"}, + {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3181df4583c4d3994d31fb235dc681d2aaad744fbdbf94c4802485ececdecf2"}, + {file = "websockets-12.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b067cb952ce8bf40115f6c19f478dc71c5e719b7fbaa511359795dfd9d1a6468"}, + {file = "websockets-12.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:00700340c6c7ab788f176d118775202aadea7602c5cc6be6ae127761c16d6b0b"}, + {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e469d01137942849cff40517c97a30a93ae79917752b34029f0ec72df6b46399"}, + {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffefa1374cd508d633646d51a8e9277763a9b78ae71324183693959cf94635a7"}, + {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba0cab91b3956dfa9f512147860783a1829a8d905ee218a9837c18f683239611"}, + {file = "websockets-12.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2cb388a5bfb56df4d9a406783b7f9dbefb888c09b71629351cc6b036e9259370"}, + {file = "websockets-12.0-py3-none-any.whl", hash = "sha256:dc284bbc8d7c78a6c69e0c7325ab46ee5e40bb4d50e494d8131a07ef47500e9e"}, + {file = "websockets-12.0.tar.gz", hash = "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b"}, +] + +[[package]] +name = "xxhash" +version = "3.4.1" +description = "Python binding for xxHash" +optional = false +python-versions = ">=3.7" +files = [ + {file = "xxhash-3.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:91dbfa55346ad3e18e738742236554531a621042e419b70ad8f3c1d9c7a16e7f"}, + {file = "xxhash-3.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:665a65c2a48a72068fcc4d21721510df5f51f1142541c890491afc80451636d2"}, + {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb11628470a6004dc71a09fe90c2f459ff03d611376c1debeec2d648f44cb693"}, + {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5bef2a7dc7b4f4beb45a1edbba9b9194c60a43a89598a87f1a0226d183764189"}, + {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c0f7b2d547d72c7eda7aa817acf8791f0146b12b9eba1d4432c531fb0352228"}, + {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00f2fdef6b41c9db3d2fc0e7f94cb3db86693e5c45d6de09625caad9a469635b"}, + {file = "xxhash-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:23cfd9ca09acaf07a43e5a695143d9a21bf00f5b49b15c07d5388cadf1f9ce11"}, + {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6a9ff50a3cf88355ca4731682c168049af1ca222d1d2925ef7119c1a78e95b3b"}, + {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:f1d7c69a1e9ca5faa75546fdd267f214f63f52f12692f9b3a2f6467c9e67d5e7"}, + {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:672b273040d5d5a6864a36287f3514efcd1d4b1b6a7480f294c4b1d1ee1b8de0"}, + {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4178f78d70e88f1c4a89ff1ffe9f43147185930bb962ee3979dba15f2b1cc799"}, + {file = "xxhash-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9804b9eb254d4b8cc83ab5a2002128f7d631dd427aa873c8727dba7f1f0d1c2b"}, + {file = "xxhash-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c09c49473212d9c87261d22c74370457cfff5db2ddfc7fd1e35c80c31a8c14ce"}, + {file = "xxhash-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:ebbb1616435b4a194ce3466d7247df23499475c7ed4eb2681a1fa42ff766aff6"}, + {file = "xxhash-3.4.1-cp310-cp310-win_arm64.whl", hash = "sha256:25dc66be3db54f8a2d136f695b00cfe88018e59ccff0f3b8f545869f376a8a46"}, + {file = "xxhash-3.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:58c49083801885273e262c0f5bbeac23e520564b8357fbb18fb94ff09d3d3ea5"}, + {file = "xxhash-3.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b526015a973bfbe81e804a586b703f163861da36d186627e27524f5427b0d520"}, + {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36ad4457644c91a966f6fe137d7467636bdc51a6ce10a1d04f365c70d6a16d7e"}, + {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:248d3e83d119770f96003271fe41e049dd4ae52da2feb8f832b7a20e791d2920"}, + {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2070b6d5bbef5ee031666cf21d4953c16e92c2f8a24a94b5c240f8995ba3b1d0"}, + {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2746035f518f0410915e247877f7df43ef3372bf36cfa52cc4bc33e85242641"}, + {file = "xxhash-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2a8ba6181514681c2591840d5632fcf7356ab287d4aff1c8dea20f3c78097088"}, + {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aac5010869240e95f740de43cd6a05eae180c59edd182ad93bf12ee289484fa"}, + {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4cb11d8debab1626181633d184b2372aaa09825bde709bf927704ed72765bed1"}, + {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b29728cff2c12f3d9f1d940528ee83918d803c0567866e062683f300d1d2eff3"}, + {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:a15cbf3a9c40672523bdb6ea97ff74b443406ba0ab9bca10ceccd9546414bd84"}, + {file = "xxhash-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6e66df260fed01ed8ea790c2913271641c58481e807790d9fca8bfd5a3c13844"}, + {file = "xxhash-3.4.1-cp311-cp311-win32.whl", hash = "sha256:e867f68a8f381ea12858e6d67378c05359d3a53a888913b5f7d35fbf68939d5f"}, + {file = "xxhash-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:200a5a3ad9c7c0c02ed1484a1d838b63edcf92ff538770ea07456a3732c577f4"}, + {file = "xxhash-3.4.1-cp311-cp311-win_arm64.whl", hash = "sha256:1d03f1c0d16d24ea032e99f61c552cb2b77d502e545187338bea461fde253583"}, + {file = "xxhash-3.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c4bbba9b182697a52bc0c9f8ec0ba1acb914b4937cd4a877ad78a3b3eeabefb3"}, + {file = "xxhash-3.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9fd28a9da300e64e434cfc96567a8387d9a96e824a9be1452a1e7248b7763b78"}, + {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6066d88c9329ab230e18998daec53d819daeee99d003955c8db6fc4971b45ca3"}, + {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93805bc3233ad89abf51772f2ed3355097a5dc74e6080de19706fc447da99cd3"}, + {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:64da57d5ed586ebb2ecdde1e997fa37c27fe32fe61a656b77fabbc58e6fbff6e"}, + {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a97322e9a7440bf3c9805cbaac090358b43f650516486746f7fa482672593df"}, + {file = "xxhash-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbe750d512982ee7d831838a5dee9e9848f3fb440e4734cca3f298228cc957a6"}, + {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:fd79d4087727daf4d5b8afe594b37d611ab95dc8e29fe1a7517320794837eb7d"}, + {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:743612da4071ff9aa4d055f3f111ae5247342931dedb955268954ef7201a71ff"}, + {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b41edaf05734092f24f48c0958b3c6cbaaa5b7e024880692078c6b1f8247e2fc"}, + {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:a90356ead70d715fe64c30cd0969072de1860e56b78adf7c69d954b43e29d9fa"}, + {file = "xxhash-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac56eebb364e44c85e1d9e9cc5f6031d78a34f0092fea7fc80478139369a8b4a"}, + {file = "xxhash-3.4.1-cp312-cp312-win32.whl", hash = "sha256:911035345932a153c427107397c1518f8ce456f93c618dd1c5b54ebb22e73747"}, + {file = "xxhash-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:f31ce76489f8601cc7b8713201ce94b4bd7b7ce90ba3353dccce7e9e1fee71fa"}, + {file = "xxhash-3.4.1-cp312-cp312-win_arm64.whl", hash = "sha256:b5beb1c6a72fdc7584102f42c4d9df232ee018ddf806e8c90906547dfb43b2da"}, + {file = "xxhash-3.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6d42b24d1496deb05dee5a24ed510b16de1d6c866c626c2beb11aebf3be278b9"}, + {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b685fab18876b14a8f94813fa2ca80cfb5ab6a85d31d5539b7cd749ce9e3624"}, + {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:419ffe34c17ae2df019a4685e8d3934d46b2e0bbe46221ab40b7e04ed9f11137"}, + {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0e041ce5714f95251a88670c114b748bca3bf80cc72400e9f23e6d0d59cf2681"}, + {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc860d887c5cb2f524899fb8338e1bb3d5789f75fac179101920d9afddef284b"}, + {file = "xxhash-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:312eba88ffe0a05e332e3a6f9788b73883752be63f8588a6dc1261a3eaaaf2b2"}, + {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:e01226b6b6a1ffe4e6bd6d08cfcb3ca708b16f02eb06dd44f3c6e53285f03e4f"}, + {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9f3025a0d5d8cf406a9313cd0d5789c77433ba2004b1c75439b67678e5136537"}, + {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:6d3472fd4afef2a567d5f14411d94060099901cd8ce9788b22b8c6f13c606a93"}, + {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:43984c0a92f06cac434ad181f329a1445017c33807b7ae4f033878d860a4b0f2"}, + {file = "xxhash-3.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a55e0506fdb09640a82ec4f44171273eeabf6f371a4ec605633adb2837b5d9d5"}, + {file = "xxhash-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:faec30437919555b039a8bdbaba49c013043e8f76c999670aef146d33e05b3a0"}, + {file = "xxhash-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:c9e1b646af61f1fc7083bb7b40536be944f1ac67ef5e360bca2d73430186971a"}, + {file = "xxhash-3.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:961d948b7b1c1b6c08484bbce3d489cdf153e4122c3dfb07c2039621243d8795"}, + {file = "xxhash-3.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:719a378930504ab159f7b8e20fa2aa1896cde050011af838af7e7e3518dd82de"}, + {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74fb5cb9406ccd7c4dd917f16630d2e5e8cbbb02fc2fca4e559b2a47a64f4940"}, + {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5dab508ac39e0ab988039bc7f962c6ad021acd81fd29145962b068df4148c476"}, + {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c59f3e46e7daf4c589e8e853d700ef6607afa037bfad32c390175da28127e8c"}, + {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cc07256eff0795e0f642df74ad096f8c5d23fe66bc138b83970b50fc7f7f6c5"}, + {file = "xxhash-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e9f749999ed80f3955a4af0eb18bb43993f04939350b07b8dd2f44edc98ffee9"}, + {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7688d7c02149a90a3d46d55b341ab7ad1b4a3f767be2357e211b4e893efbaaf6"}, + {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a8b4977963926f60b0d4f830941c864bed16aa151206c01ad5c531636da5708e"}, + {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:8106d88da330f6535a58a8195aa463ef5281a9aa23b04af1848ff715c4398fb4"}, + {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:4c76a77dbd169450b61c06fd2d5d436189fc8ab7c1571d39265d4822da16df22"}, + {file = "xxhash-3.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:11f11357c86d83e53719c592021fd524efa9cf024dc7cb1dfb57bbbd0d8713f2"}, + {file = "xxhash-3.4.1-cp38-cp38-win32.whl", hash = "sha256:0c786a6cd74e8765c6809892a0d45886e7c3dc54de4985b4a5eb8b630f3b8e3b"}, + {file = "xxhash-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:aabf37fb8fa27430d50507deeab2ee7b1bcce89910dd10657c38e71fee835594"}, + {file = "xxhash-3.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6127813abc1477f3a83529b6bbcfeddc23162cece76fa69aee8f6a8a97720562"}, + {file = "xxhash-3.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ef2e194262f5db16075caea7b3f7f49392242c688412f386d3c7b07c7733a70a"}, + {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71be94265b6c6590f0018bbf73759d21a41c6bda20409782d8117e76cd0dfa8b"}, + {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:10e0a619cdd1c0980e25eb04e30fe96cf8f4324758fa497080af9c21a6de573f"}, + {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fa122124d2e3bd36581dd78c0efa5f429f5220313479fb1072858188bc2d5ff1"}, + {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17032f5a4fea0a074717fe33477cb5ee723a5f428de7563e75af64bfc1b1e10"}, + {file = "xxhash-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca7783b20e3e4f3f52f093538895863f21d18598f9a48211ad757680c3bd006f"}, + {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d77d09a1113899fad5f354a1eb4f0a9afcf58cefff51082c8ad643ff890e30cf"}, + {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:21287bcdd299fdc3328cc0fbbdeaa46838a1c05391264e51ddb38a3f5b09611f"}, + {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:dfd7a6cc483e20b4ad90224aeb589e64ec0f31e5610ab9957ff4314270b2bf31"}, + {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:543c7fcbc02bbb4840ea9915134e14dc3dc15cbd5a30873a7a5bf66039db97ec"}, + {file = "xxhash-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:fe0a98d990e433013f41827b62be9ab43e3cf18e08b1483fcc343bda0d691182"}, + {file = "xxhash-3.4.1-cp39-cp39-win32.whl", hash = "sha256:b9097af00ebf429cc7c0e7d2fdf28384e4e2e91008130ccda8d5ae653db71e54"}, + {file = "xxhash-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:d699b921af0dcde50ab18be76c0d832f803034d80470703700cb7df0fbec2832"}, + {file = "xxhash-3.4.1-cp39-cp39-win_arm64.whl", hash = "sha256:2be491723405e15cc099ade1280133ccfbf6322d2ef568494fb7d07d280e7eee"}, + {file = "xxhash-3.4.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:431625fad7ab5649368c4849d2b49a83dc711b1f20e1f7f04955aab86cd307bc"}, + {file = "xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc6dbd5fc3c9886a9e041848508b7fb65fd82f94cc793253990f81617b61fe49"}, + {file = "xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3ff8dbd0ec97aec842476cb8ccc3e17dd288cd6ce3c8ef38bff83d6eb927817"}, + {file = "xxhash-3.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef73a53fe90558a4096e3256752268a8bdc0322f4692ed928b6cd7ce06ad4fe3"}, + {file = "xxhash-3.4.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:450401f42bbd274b519d3d8dcf3c57166913381a3d2664d6609004685039f9d3"}, + {file = "xxhash-3.4.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a162840cf4de8a7cd8720ff3b4417fbc10001eefdd2d21541a8226bb5556e3bb"}, + {file = "xxhash-3.4.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b736a2a2728ba45017cb67785e03125a79d246462dfa892d023b827007412c52"}, + {file = "xxhash-3.4.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d0ae4c2e7698adef58710d6e7a32ff518b66b98854b1c68e70eee504ad061d8"}, + {file = "xxhash-3.4.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6322c4291c3ff174dcd104fae41500e75dad12be6f3085d119c2c8a80956c51"}, + {file = "xxhash-3.4.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:dd59ed668801c3fae282f8f4edadf6dc7784db6d18139b584b6d9677ddde1b6b"}, + {file = "xxhash-3.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:92693c487e39523a80474b0394645b393f0ae781d8db3474ccdcead0559ccf45"}, + {file = "xxhash-3.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4603a0f642a1e8d7f3ba5c4c25509aca6a9c1cc16f85091004a7028607ead663"}, + {file = "xxhash-3.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fa45e8cbfbadb40a920fe9ca40c34b393e0b067082d94006f7f64e70c7490a6"}, + {file = "xxhash-3.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:595b252943b3552de491ff51e5bb79660f84f033977f88f6ca1605846637b7c6"}, + {file = "xxhash-3.4.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:562d8b8f783c6af969806aaacf95b6c7b776929ae26c0cd941d54644ea7ef51e"}, + {file = "xxhash-3.4.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:41ddeae47cf2828335d8d991f2d2b03b0bdc89289dc64349d712ff8ce59d0647"}, + {file = "xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c44d584afdf3c4dbb3277e32321d1a7b01d6071c1992524b6543025fb8f4206f"}, + {file = "xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd7bddb3a5b86213cc3f2c61500c16945a1b80ecd572f3078ddbbe68f9dabdfb"}, + {file = "xxhash-3.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9ecb6c987b62437c2f99c01e97caf8d25660bf541fe79a481d05732e5236719c"}, + {file = "xxhash-3.4.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:696b4e18b7023527d5c50ed0626ac0520edac45a50ec7cf3fc265cd08b1f4c03"}, + {file = "xxhash-3.4.1.tar.gz", hash = "sha256:0379d6cf1ff987cd421609a264ce025e74f346e3e145dd106c0cc2e3ec3f99a9"}, +] + +[[package]] +name = "yarl" +version = "1.9.4" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e"}, + {file = "yarl-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2"}, + {file = "yarl-1.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541"}, + {file = "yarl-1.9.4-cp310-cp310-win32.whl", hash = "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d"}, + {file = "yarl-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b"}, + {file = "yarl-1.9.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099"}, + {file = "yarl-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c"}, + {file = "yarl-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98"}, + {file = "yarl-1.9.4-cp311-cp311-win32.whl", hash = "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31"}, + {file = "yarl-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1"}, + {file = "yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81"}, + {file = "yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142"}, + {file = "yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10"}, + {file = "yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7"}, + {file = "yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984"}, + {file = "yarl-1.9.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:63b20738b5aac74e239622d2fe30df4fca4942a86e31bf47a81a0e94c14df94f"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7d7f7de27b8944f1fee2c26a88b4dabc2409d2fea7a9ed3df79b67277644e17"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c74018551e31269d56fab81a728f683667e7c28c04e807ba08f8c9e3bba32f14"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ca06675212f94e7a610e85ca36948bb8fc023e458dd6c63ef71abfd482481aa5"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aef935237d60a51a62b86249839b51345f47564208c6ee615ed2a40878dccdd"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b134fd795e2322b7684155b7855cc99409d10b2e408056db2b93b51a52accc7"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d25039a474c4c72a5ad4b52495056f843a7ff07b632c1b92ea9043a3d9950f6e"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f7d6b36dd2e029b6bcb8a13cf19664c7b8e19ab3a58e0fefbb5b8461447ed5ec"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:957b4774373cf6f709359e5c8c4a0af9f6d7875db657adb0feaf8d6cb3c3964c"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:d7eeb6d22331e2fd42fce928a81c697c9ee2d51400bd1a28803965883e13cead"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6a962e04b8f91f8c4e5917e518d17958e3bdee71fd1d8b88cdce74dd0ebbf434"}, + {file = "yarl-1.9.4-cp37-cp37m-win32.whl", hash = "sha256:f3bc6af6e2b8f92eced34ef6a96ffb248e863af20ef4fde9448cc8c9b858b749"}, + {file = "yarl-1.9.4-cp37-cp37m-win_amd64.whl", hash = "sha256:ad4d7a90a92e528aadf4965d685c17dacff3df282db1121136c382dc0b6014d2"}, + {file = "yarl-1.9.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be"}, + {file = "yarl-1.9.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f"}, + {file = "yarl-1.9.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f1"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d57"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1be"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3"}, + {file = "yarl-1.9.4-cp38-cp38-win32.whl", hash = "sha256:686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece"}, + {file = "yarl-1.9.4-cp38-cp38-win_amd64.whl", hash = "sha256:a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b"}, + {file = "yarl-1.9.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27"}, + {file = "yarl-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1"}, + {file = "yarl-1.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0"}, + {file = "yarl-1.9.4-cp39-cp39-win32.whl", hash = "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575"}, + {file = "yarl-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15"}, + {file = "yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad"}, + {file = "yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "06de547c13c178ec8d95f0cba226ae73015eddc7196259de342ac81806dd25ae" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..d79cbfb84 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[tool.poetry] +name = "nova-utils" +version = "1.0.0" +description = "Config project for Nova Wallet" +authors = ["Your Name "] +license = "apache 2.0" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +allure-pytest = "2.12.0" +allure-python-commons = "2.12.0" +delayed_assert = "0.3.6" +deepdiff = "6.2.1" +Jinja2 = "3.1.2" +pytablewriter = "0.64.2" +pytest = "7.2.0" +pytest-xdist = "3.0.2" +pytest-rerunfailures = "10.3" +substrate-interface = "1.7.4" +web3 = "6.2.0" +flake8 = "^6.1.0" +func-timeout = "^4.3.5" +typing-extensions = "^4.9.0" + + + +[tool.poetry.group.dev.dependencies] +pre-commit = "^3.3.3" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index b8a1ecc09..000000000 --- a/requirements.txt +++ /dev/null @@ -1,48 +0,0 @@ -attrs==21.2.0 -autopep8==1.6.0 -base58==2.1.1 -certifi==2021.10.8 -chardet==4.0.0 -charset-normalizer==2.0.9 -cytoolz==0.11.2 -DataProperty==0.54.2 -ecdsa==0.17.0 -eth-hash==0.3.2 -eth-keys==0.3.3 -eth-typing==2.2.2 -eth-utils==1.10.0 -execnet==1.9.0 -idna==3.3 -iniconfig==1.1.1 -Jinja2==3.0.3 -MarkupSafe==2.1.0 -mbstrdecoder==1.1.0 -more-itertools==8.12.0 -packaging==21.3 -pathvalidate==2.5.0 -pluggy==1.0.0 -py==1.11.0 -py-bip39-bindings==0.1.8 -py-ed25519-bindings==0.1.3 -py-sr25519-bindings==0.1.4 -pycodestyle==2.8.0 -pycryptodome==3.12.0 -pyparsing==3.0.6 -pytablewriter==0.64.1 -pytest==6.2.5 -pytest-forked==1.4.0 -pytest-xdist==2.5.0 -python-dateutil==2.8.2 -pytz==2021.3 -requests==2.26.0 -scalecodec==1.0.27 -six==1.16.0 -substrate-interface==1.1.3 -tabledata==1.3.0 -tcolorpy==0.1.1 -toml==0.10.2 -toolz==0.11.2 -typepy==1.3.0 -urllib3==1.26.7 -websocket-client==0.59.0 -xxhash==2.0.2 diff --git a/scripts/__init__.py b/scripts/__init__.py new file mode 100644 index 000000000..e8ba88a67 --- /dev/null +++ b/scripts/__init__.py @@ -0,0 +1,2 @@ +from . import utils +from . import create_type_file diff --git a/scripts/create_slip44_token_list.py b/scripts/create_slip44_token_list.py new file mode 100644 index 000000000..3264efeb5 --- /dev/null +++ b/scripts/create_slip44_token_list.py @@ -0,0 +1,60 @@ +import requests +import json +import os + +from collections import defaultdict +from typing import Dict, Tuple + +from utils.work_with_data import write_data_to_file + +CHAINS_VERISON = os.getenv('CHAINS_VERSION', default = "v8") + +with open(f"chains/{CHAINS_VERISON}/chains_dev.json") as fin: + dev_chains = json.load(fin) + +with open("assets/evm/v2/assets_dev.json") as fin: + evm_assets = json.load(fin) + + +def request_data_from_metamask(): + response = requests.get("https://raw.githubusercontent.com/MetaMask/slip44/main/slip44.json") + data = response.json() + return data + +def create_slip44_array(first_dict, second_dict): + slip44_array = [] + for _, value in second_dict.items(): + if value['symbol'] in first_dict: + slip44_array.append({ "index": value["index"], "symbol": value["symbol"] }) + return slip44_array + +def collect_all_assets_in_nova(chains_file, assets_file) -> Tuple[Dict[str, list], Dict[str, list]]: + chain_assets = defaultdict(list) + for chain in chains_file: + for asset in chain['assets']: + chain_assets[asset['symbol']].append(chain['chainId']) + + evm_assets = defaultdict(list) + for evm_asset in assets_file: + for evm_instance in evm_asset['instances']: + evm_assets[evm_asset['symbol']].append(evm_instance['chainId']) + + print(f"In {CHAINS_VERISON} chains.json file was found - {len(chain_assets)} assets") + print(f"In evm assets.json file was found - {len(evm_assets)} assets") + + return chain_assets, evm_assets + + +def create_slip44_token_list(chains_file, assets_file): + chain_assets, evm_assets = collect_all_assets_in_nova(chains_file, assets_file) + metamask_data = request_data_from_metamask() + merged_dict = {**chain_assets, **evm_assets} + slip44_array = create_slip44_array(merged_dict, metamask_data) + print(f"Slip44 array has {len(slip44_array)} elements") + + return slip44_array + + +if __name__ == '__main__': + slip44_array = create_slip44_token_list(chains_file=dev_chains, assets_file=evm_assets) + write_data_to_file('assets/slip44.json', json.dumps(slip44_array, indent=4)) diff --git a/scripts/create_type_file.py b/scripts/create_type_file.py index a4fca82cc..e99716b7a 100644 --- a/scripts/create_type_file.py +++ b/scripts/create_type_file.py @@ -1,268 +1,100 @@ -import json -from typing import List -from substrateinterface import SubstrateInterface, Keypair - - -class JsonObject: - def __init__( - self, - runtime_id, - types_balance, - types_index, - types_phase, - types_address, - types_extrinsicSignature, - types_paraId, - types_sp_core_crypto_accountId32, - types_pallet_identity_types_data, - metadata_types, - ) -> None: - self.runtime_id = runtime_id - self.types = {} - json_types = {} - json_types["Balance"] = types_balance - json_types["Index"] = types_index - json_types["Phase"] = types_phase - json_types["Address"] = types_address - json_types["ExtrinsicSignature"] = types_extrinsicSignature - json_types["ParaId"] = types_paraId - network_runtime_name = get_current_path_from_metadata( - "Event", metadata_types - ).split(".")[0] - json_types[network_runtime_name + ".Event"] = "GenericEvent" - json_types[network_runtime_name + ".Call"] = "GenericCall" - json_types["sp_core.crypto.AccountId32"] = types_sp_core_crypto_accountId32 - json_types["pallet_identity.types.Data"] = types_pallet_identity_types_data - self.types.update(json_types) - self.versioning = [] - - -class Properties: - def __init__( - self, chain_id, chain_name, chain_symbol, chain_precision, chain_prefix - ) -> None: - self.chainId = chain_id - self.name = chain_name - self.symbol = chain_symbol - self.precision = chain_precision - self.ss58Format = chain_prefix - - -def get_properties(substrate: SubstrateInterface) -> Properties: - substrate.get_constant('system', 'ss58Prefix') - symbol = substrate.properties["tokenSymbol"] - - if (isinstance(symbol, list)): - symbol = substrate.properties["tokenSymbol"][0] - - precision = substrate.properties["tokenDecimals"] - if (isinstance(precision, list)): - precision = substrate.properties["tokenDecimals"][0] - - data_prop = Properties( - chain_name=substrate.chain, - chain_symbol=symbol, - chain_prefix= substrate.ss58_format, - chain_precision=precision, - - # The genesis hash should be obtained last, because the main object "substrate" may change after the genesis was obtained - chain_id=substrate.get_block_hash(0) - ) - return data_prop - - -def get_metadata_param(substrate: SubstrateInterface) -> JsonObject: - metadata = substrate.get_block_metadata() - metadata_is_v14(metadata) - account_do_not_need_updates(substrate) - metadata_types = metadata.value[1]["V14"]["types"]["types"] - - metadata_json = JsonObject( - runtime_id=metadata.runtime_config.active_spec_version_id, - types_balance=get_primitive_from_metadata("Balance", metadata_types), - types_index=get_primitive_for_index("AccountInfo", metadata_types), - types_phase=get_path_from_metadata("Phase", metadata_types), - types_address=get_path_from_metadata("Address", metadata_types), - types_extrinsicSignature=get_crypto_path_from_metadata( - "Sr25519", metadata_types - ), - types_paraId="polkadot_parachain.primitives.Id", - types_sp_core_crypto_accountId32="GenericAccountId", - types_pallet_identity_types_data="Data", - metadata_types=metadata_types, - ) - return metadata_json - - -def metadata_is_v14(metadata): - if "V14" in metadata.value[1].keys(): - return True - else: - raise Exception("It's not a v14 runtime: %s" % (metadata.value[1].keys())) - - -def account_do_not_need_updates(substrate: SubstrateInterface): - keypair = Keypair.create_from_uri("//Alice") - account_info = substrate.query("System", "Account", params=[keypair.ss58_address]) - elements = ["nonce", "free", "reserved", "misc_frozen", "fee_frozen"] - if len(account_info.value["data"]) != 4: - raise Exception("Account info is changed: %s" % (account_info)) - for element in elements: - if element in account_info: - continue - elif element in account_info["data"]: - continue - else: - raise Exception("Account info is changed: %s" % (account_info)) - - -def find_type_in_metadata(name, metadata_types): - return_data = [] - for item in find_in_obj(metadata_types, name): - return_data.append(item) - return return_data - - -def get_primitive_for_index(name, metadata_types): - data = find_type_in_metadata(name, metadata_types) - value = metadata_types - for path in data[0]: - if path == "path": - new_path = find_type_in_metadata("Index", value) - for key in new_path[0]: - if key == "name": - continue - value = value[key] - break - value = value[path] - type_with_primitive = metadata_types[value["type"]] - return type_with_primitive["type"]["def"]["primitive"] - - -def get_primitive_from_metadata(name, metadata_types): - data = find_type_in_metadata(name, metadata_types) - value = metadata_types - for path in data[0]: - if path == "name": - continue - value = value[path] - type_with_primitive = metadata_types[value["type"]] - return type_with_primitive["type"]["def"]["primitive"] +#!/usr/bin/env python3 +"""That script is used for creating type files in chains/**/types/ directory.""" +from pathlib import Path +import os +import sys +import json -def get_path_from_metadata(name, metadata_types): - data = find_type_in_metadata(name, metadata_types) - value = metadata_types - for path in data[0]: - if path in ("typeName", "name"): +# add parent directory to evade import problems across different modules +path_root = Path(__file__).parents[1] +sys.path.append(str(path_root)) + +from scripts.utils.metadata_interaction import get_metadata_param, get_properties +from scripts.utils.work_with_data import get_data_from_file, write_data_to_file +from scripts.utils.substrate_interface import create_connection_by_url +from scripts.utils.chain_model import Chain + + +def compare_type_files_for_all_networks(chains_file): + """This function compare type files with runtime metadata for all networks provided by chain_files + all changes will be written in particular type file. + + Args: + chains_file (obj): Json object with all chains from chains/**/chains*.json + """ + + index = 0 + for chain in chains_file: + index += 1 + print( + f"Generating has started for: {chain['name']}. {index}/{len(chains_file)}") + chain_options = chain.get('options') + skip_options = {'ethereumBased', 'noSubstrateRuntime'} + + if chain_options is not None: + if skip_options.intersection(chain_options): + # TODO need to implement creation type file for EVM networks + print(f"Temporary can't generate type files for EVM networks, {chain['name']} was skipped") + continue + + actual_types_file_path = chain['types']['url'].split('master/')[1] + actual_types_file = get_data_from_file(actual_types_file_path) + chain_object = Chain(chain) + chain_object.create_connection() + + types_from_runtime = get_metadata_param(chain_object.substrate) + if types_from_runtime is None: continue - value = value[path] - type_with_primitive = metadata_types[value["type"]] - returned_path = ".".join(str(x) for x in type_with_primitive["type"]["path"]) - return returned_path - - -def get_current_path_from_metadata(name, metadata_types): - data = find_type_in_metadata(name, metadata_types) - value = metadata_types - for path in data[0]: - if path == "path": - value = value[path] - returned_path = ".".join(str(x) for x in value) - return returned_path - value = value[path] - return "Can't find value" - - -def get_crypto_path_from_metadata(name, metadata_types): - data = find_type_in_metadata(name, metadata_types) - value = metadata_types - for variants in data: - wrong_path = False - for path in variants: - if path == "def": - for list_val in value["path"]: - if list_val == "did": - wrong_path = True - break - if wrong_path: - break - value = value["path"] - returned_path = ".".join(str(x) for x in value) - return returned_path - value = value[path] - value = metadata_types - return "Can't find value" - - -def find_in_obj(obj, condition, path=None): - - if path is None: - path = [] - - # In case this is a list - if isinstance(obj, list): - for index, value in enumerate(obj): - new_path = list(path) - new_path.append(index) - for result in find_in_obj(value, condition, path=new_path): - yield result - - # In case this is a dictionary - if isinstance(obj, dict): - for key, value in obj.items(): - new_path = list(path) - new_path.append(key) - for result in find_in_obj(value, condition, path=new_path): - yield result - - if condition == key: - new_path = list(path) - new_path.append(key) - yield new_path - - if condition == obj: - new_path = list(path) - yield new_path - + actual_runtime_dispatch_info = actual_types_file['types'].get('RuntimeDispatchInfo') + if actual_runtime_dispatch_info: + types_from_runtime.__dict__['types']['RuntimeDispatchInfo'] = actual_runtime_dispatch_info + write_data_to_file(actual_types_file_path, + json.dumps(types_from_runtime.__dict__, indent=2)) + chain_object.close_substrate_connection() + print(f"Generating has successfuly finished: {chain['name']} ๐ŸŽ‰") -def create_connection_by_url(url): - try: - substrate = SubstrateInterface(url=url, use_remote_preset=True) - except ConnectionRefusedError and TimeoutError: - print("โš ๏ธ Can't connect by %s, check it is available?" % (url)) - raise - - return substrate - - -def write_data_to_file(name, data: str): - - with open(name, "w") as file: - file.write(data) - - -def main(): - - user_input = input("Enter a url for collect data, url should start with wss:\n") - url = user_input.strip() - - print("Data collecting in process and will write to file in current directory.") +def create_new_type_file(url): substrate = create_connection_by_url(url) - json_metadata = get_metadata_param(substrate) json_property = get_properties(substrate) - write_data_to_file( - json_property.name + "_types.json", json.dumps(json_metadata.__dict__) + json_property.name + + "_types.json", json.dumps(json_metadata.__dict__, indent=2) ) write_data_to_file( - json_property.name + "_property.json", json.dumps(json_property.__dict__) + json_property.name + + "_property.json", json.dumps(json_property.__dict__, indent=2) ) - print("Success! \ncheck " + json_property.name + "_* files") +def main(argv): + """Main function for create or update type files. + + Args: + argv (str): ["dev", "prod", None] + if "dev" - type files will be created for all networks from chains/**/chains_dev.json + if "prod" - type files will be created for all networks from chains/**/chains.json + if None - type file will be created for network provided by url + """ + + if 'dev' in argv: + chains_path = os.getenv("DEV_CHAINS_JSON_PATH") + chains_file = get_data_from_file(chains_path) + compare_type_files_for_all_networks(chains_file) + elif 'prod' in argv: + chains_path = os.getenv("CHAINS_JSON_PATH") + chains_file = get_data_from_file(chains_path) + compare_type_files_for_all_networks(chains_file) + else: + user_input = input( + "Enter a url for collect data, url should start with wss:\n") + url = user_input.strip() + print("Data collecting in process and will write to file in current directory.") + create_new_type_file(url) + + if __name__ == "__main__": - main() + main(sys.argv[1:]) diff --git a/scripts/fee_via_runtime_call.py b/scripts/fee_via_runtime_call.py new file mode 100644 index 000000000..3add7fb94 --- /dev/null +++ b/scripts/fee_via_runtime_call.py @@ -0,0 +1,53 @@ +import json +from typing import Set + +from os import listdir +from scripts.utils.work_with_data import get_data_from_file, write_data_to_file + +v17_path = "../chains/v17/chains.json" + +v16_chains = get_data_from_file("../chains/v16/chains.json") +v17_chains = get_data_from_file(v17_path) + + +path = "../chains/v2/types" +files = [f for f in listdir(path)] + + +def find_type_files_containing(searched_key: str) -> Set: + found_files = [] + + for file in files: + file_data = get_data_from_file(path + "/" + file) + + for key in file_data["types"]: + if key == searched_key: + found_files.append("https://raw.githubusercontent.com/novasamatech/nova-utils/master/chains/v2/types/" + file) + + return found_files + + +found_files = find_type_files_containing("RuntimeDispatchInfo") +print(len(found_files)) + +modified_chains = 0 + +for v17_chain in v17_chains: + v16_chain = next((x for x in v16_chains if x["chainId"] == v17_chain["chainId"]), None) + + if v16_chain is None or "types" not in v16_chain: + continue + + if not v16_chain["types"]["url"] in found_files: + continue + + current_additional = v17_chain.get("additional", {}) + current_additional["feeViaRuntimeCall"] = True + v17_chain["additional"] = current_additional + found_files.remove(v16_chain["types"]["url"]) + modified_chains+=1 + +print(f"Still remaining: {found_files}") +print(f"Modified: {modified_chains}") + +write_data_to_file(v17_path, json.dumps(v17_chains, indent=4)) diff --git a/scripts/generate_dapps_list.py b/scripts/generate_dapps_list.py index a41aa4bec..b0761ab8c 100644 --- a/scripts/generate_dapps_list.py +++ b/scripts/generate_dapps_list.py @@ -14,7 +14,7 @@ def generate_dapps_table(): writer = MarkdownTableWriter( table_name="List of supported dapps", - headers=["DApp", "Url", "Tags"], + headers=["--", "DApp", "Url", "Tags"], value_matrix=generate_value_matrix(), margin=1 ) @@ -24,7 +24,7 @@ def generate_dapps_table(): def generate_value_matrix(): returning_array = [] - with open(os.getcwd() + f"/dapps/dapps.json", 'r') as json_file: + with open(os.getcwd() + f"/dapps/dapps_full.json", 'r') as json_file: data = json.load(json_file) for dapp in data['dapps']: network_data_array = [] @@ -33,6 +33,8 @@ def generate_value_matrix(): network_data_array.append(",".join(dapp["categories"])) returning_array.append(network_data_array) returning_array.sort() + increment = iter(range(1, len(returning_array)+1)) + [network.insert(0, next(increment)) for network in returning_array] return returning_array diff --git a/scripts/generate_network_list.py b/scripts/generate_network_list.py index ee409f46c..e6464ac9d 100644 --- a/scripts/generate_network_list.py +++ b/scripts/generate_network_list.py @@ -8,16 +8,25 @@ readme = Template(""" +# Supported Networks & Assets data: +### ๐Ÿ•ธ๏ธ Supported networks: {{ number_of_networks }} +### ๐Ÿ’ฐ All assets {{ number_of_assets }} +### ๐Ÿช™ Unique assets: {{ unique_assets }} +### ๐Ÿ’ซ Cross Chain directions: {{ number_of_xcms }} +### ๐Ÿงพ SubQuery API projects: {{ number_of_subquery_explorers }} +### ๐Ÿ‘€ Networks with block explorers: {{ networks_with_block_explorers }} +--- {{networks_table}} """) -CHAINS_VERSION = "v4" +CHAINS_VERSION = os.getenv('CHAINS_VERSION') +XCM_VERSION = os.getenv('XCM_VERSION') def generate_networks_table(): writer = MarkdownTableWriter( table_name="List of supported networks", - headers=["Network", "Assets", "Explorers", "SubQuery explorer"], + headers=["--", "Network", "Assets", "Explorers", "SubQuery explorer"], value_matrix=generate_value_matrix(), margin=1 ) @@ -40,20 +49,36 @@ def generate_value_matrix(): "history", network.get("externalApi"))) returning_array.append(network_data_array) returning_array.sort() + increment = iter(range(1, len(returning_array)+1)) + [network.insert(0, next(increment)) for network in returning_array] return returning_array -def parse_parameters(key_param, object): - if object is None: +def parse_parameters(key_param, parsing_object): + if parsing_object is None: return " - " - if type(object) is dict: - data = object.get(key_param, " - ") - if type(data) is str: + if isinstance(parsing_object, dict): + data = parsing_object.get(key_param, " - ") + if isinstance(data, str): return data - return subquery_url_formator(data.get("url")) + if isinstance(data, list): + for item in data: + if key_param == "history": + if item.get('type') == 'subquery': + return subquery_url_formator(item.get('url')) + if item.get('type') == 'etherscan': + return item.get('url') + return ", ".join(data) + else: + raise Exception(F"Unknown key_param: {key_param}") + + if key_param == "symbol": + return '
'.join(str(x.get(key_param)) for x in parsing_object) + else: + return_data = '
'.join(str(x.get(key_param)) + for x in parsing_object) - return_data = '
'.join(str(x.get(key_param)) for x in object) if return_data is None: return " - " return return_data @@ -62,22 +87,82 @@ def parse_parameters(key_param, object): def subquery_url_formator(url): explorer_base_url = "https://explorer.subquery.network/subquery/nova-wallet/" - if ("gapi" in url): + if "gapi" in url: organisation = "nova-" injecting_part = url.split("-")[1].split(".")[0] - final_explorer_url = "[{name}]({link})".format( - name=organisation+injecting_part, link=explorer_base_url + organisation + injecting_part) + final_explorer_url = f"[{organisation+injecting_part}]({explorer_base_url + organisation + injecting_part})" return final_explorer_url else: injecting_part = url.split("/")[-1] - final_explorer_url = "[{name}]({link})".format( - name=injecting_part, link=explorer_base_url + injecting_part) + final_explorer_url = f"[{injecting_part}]({explorer_base_url + injecting_part})" return final_explorer_url -if __name__ == '__main__': +def calculate_parameters(list_of_arrays, element_name): + unique_elements = [] + all_elements = [] + element_index = 0 + for index, header in enumerate(list_of_arrays.headers): + if header == element_name: + element_index = index + break + + for value in list_of_arrays.value_matrix: + if value[element_index] == " - ": + continue + if element_name == "Network": + all_elements.append(value[element_index]) + if value[element_index] not in unique_elements: + unique_elements.append(value[element_index]) + elif element_name == "Assets": + asset_list = value[element_index].split('
') + for asset in asset_list: + all_elements.append(value[element_index]) + if asset not in unique_elements: + unique_elements.append(asset) + elif element_name == "SubQuery explorer": + all_elements.append(value[element_index]) + if value[element_index] not in unique_elements: + unique_elements.append(value[element_index]) + elif element_name == "Explorers": + all_elements.append(value[element_index]) + if value[element_index] not in unique_elements: + unique_elements.append(value[element_index]) + else: + raise Exception("Unknown type of value") + + return len(unique_elements), len(all_elements) + + +def calculate_number_of_xcms(): + with open(os.getcwd()+f"/xcm/{XCM_VERSION}/transfers.json", 'r') as json_file: + data = json.load(json_file) + accumulator = 0 + for network in data.get('chains'): + for asset in network.get('assets'): + for _ in asset.get('xcmTransfers'): + accumulator += 1 + return accumulator + +if __name__ == '__main__': with open("./chains/README.md", "w") as f: + network_table = generate_networks_table() + unique_networks, all_networks = calculate_parameters( + network_table, 'Network') + uniques_assets, all_assets = calculate_parameters( + network_table, 'Assets') + unique_sq_explorers, all_explorers = calculate_parameters( + network_table, 'SubQuery explorer') + unique_explorers, all_explorers = calculate_parameters( + network_table, 'Explorers') + xcm_number = calculate_number_of_xcms() f.write(readme.render( - networks_table=generate_networks_table() + networks_table=network_table, + number_of_networks=unique_networks, + number_of_assets=all_assets, + number_of_subquery_explorers=unique_sq_explorers, + networks_with_block_explorers=all_explorers, + unique_assets=uniques_assets, + number_of_xcms=xcm_number )) diff --git a/scripts/modify_chains.py b/scripts/modify_chains.py new file mode 100644 index 000000000..ca1c4c15e --- /dev/null +++ b/scripts/modify_chains.py @@ -0,0 +1,97 @@ +import re +from abc import ABC, abstractmethod +from typing import List, Any +import json +from utils.work_with_data import get_data_from_file, write_data_to_file + + +class Command(ABC): + + path: List[str] + + def __init__(self, path: List[str]): + self.path = path + + @abstractmethod + def apply_command_to_chain_property(self, chain_property) -> Any: + pass + + def apply_command(self, chain): + chain_property = chain + property_parent = chain + + for idx, segment in enumerate(self.path): + property_parent = chain_property + chain_property = chain_property.get(segment, None) + + if idx < len(self.path) - 1 and chain_property is None: + chain_property = {} + property_parent[segment] = chain_property + + property_parent[self.path[-1]] = self.apply_command_to_chain_property(chain_property) + + +class AddCommand(Command): + + element: Any + + def __init__(self, path: List[str], element: Any): + super().__init__(path) + self.element = element + + def apply_command_to_chain_property(self, chain_property) -> Any: + if chain_property is None: + return [self.element] + + chain_property.append(self.element) + return chain_property + + +def parse_command(command_raw: str) -> Command: + command, arg = command_raw.split(" ") + command_segments = command.split(".") + chain_property_path, action = command_segments[:-1], command_segments[-1] + + arg_parsed = json.loads(arg) + + if action == "add": + return AddCommand(chain_property_path, arg_parsed) + else: + raise Exception(f"Unknown command: {command_raw}") + + + +file_names_raw = input("Enter file names you want to modify, separated by space (e.g. v17/chains.json): ") +file_names = file_names_raw.split(" ") + +chain_names_raw = input("Enter chain names you want to modify, separated by comma:") +chain_names = re.split(r',\s*', chain_names_raw) + + +def chains_path(path_suffix: str) -> str: + return "../chains/" + path_suffix + + +def load_chains_file(path_suffix): + return get_data_from_file(chains_path(path_suffix)) + + +def save_chains_file(path_suffix, content): + raw = json.dumps(content, indent=4) + write_data_to_file(chains_path(path_suffix), raw) + + +while True: + command_raw = input("Enter modify command: ") + command = parse_command(command_raw) + + for file_name in file_names: + chains = load_chains_file(file_name) + + for chain_name in chain_names: + chain = next(c for c in chains if c["name"].casefold() == chain_name.casefold()) + command.apply_command(chain) + + save_chains_file(file_name, chains) + + print("Done") diff --git a/scripts/print_xcm_changes.py b/scripts/print_xcm_changes.py new file mode 100644 index 000000000..420a8a2e5 --- /dev/null +++ b/scripts/print_xcm_changes.py @@ -0,0 +1,200 @@ +#!/usr/bin/python +""" +This script compare transfers.json from endpoint and local file, then print changes. +""" +import sys +import os +import json +from collections import defaultdict +from utils.work_with_data import get_data_from_file, get_request_via_https + + +def deep_search_an_elemnt_by_key(obj, key): + """Search an element in object by key and return it's value + + Args: + obj (dict | list): Object to search + key (str): key to search + + Returns: + obj: Value of first found element + """ + + if key in obj: + return obj[key] + for k, v in obj.items(): + if isinstance(v, dict): + item = deep_search_an_elemnt_by_key(v, key) + if item is not None: + return item + if isinstance(v, list): + for element in v: + if isinstance(element, dict): + tuple_item = deep_search_an_elemnt_by_key(element, key) + if tuple_item is not None: + return tuple_item + + +def compare_reserve_fee(object_accumulator, actual_assets_location, changed_assets_location): + """Compare reserve fee between production and changed assets location + + Args: + object_accumulator (obj): This object accumulate all changes + actual_assets_location (dict): Dictinary with actual assets location + changed_assets_location (dict): Dictinary with changed assets location + """ + + for assets, assets_data in actual_assets_location.items(): + try: + new_value = deep_search_an_elemnt_by_key( + changed_assets_location[assets], 'value') + old_value = deep_search_an_elemnt_by_key(assets_data, 'value') + if new_value != old_value: + object_accumulator['reserveFee'][assets] = { + 'old_value': old_value, 'new_value': new_value} + except: + object_accumulator['reserveFee'][assets] = "That asset was removed" + + + +def find_new_destinations(object_accumulator, actual_chain_dict, new_cahin_dict, chain_json_dict): + for chain_id, chain_data in new_cahin_dict.items(): + chain_name = chain_json_dict[chain_id].get('name') + for chain_asset in chain_data.get('assets'): + asset_in_actual_chain_dict = {} + asset_symbol = chain_asset['assetLocation'] + try: + asset_in_actual_chain_dict = next( + asset for asset in actual_chain_dict[chain_id]['assets'] if asset['assetLocation'] == asset_symbol) + except (StopIteration, KeyError): + pass + for destination in chain_asset.get('xcmTransfers'): + destination_value = destination.get('destination') + destination_chain_id = destination_value.get('chainId') + destination_name = chain_json_dict[destination_chain_id].get( + 'name') + actual_destinations = asset_in_actual_chain_dict.get( + 'xcmTransfers') + try: + destination_in_generated_chain_file = next( + new_destination for new_destination in actual_destinations if new_destination.get('destination').get('chainId') == destination_chain_id) + except (StopIteration, KeyError, TypeError): + object_accumulator['chains'][chain_name][asset_symbol][destination_name] = 'That destination was added' + continue + + +def compare_destinations(object_accumulator, actual_chain_dict, new_chain_dict, chains_json_dict): + """Compare destinations between production and changed assets location + + Args: + object_accumulator (dict): This object accumulate all changes + actual_chain_dict (dict): Dictinary with production chains + new_chain_dict (dict): Dictinary with changed chains + chains_json_dict (dict): Dictinary with chains.json + """ + + find_new_destinations(object_accumulator, actual_chain_dict, new_chain_dict, chains_json_dict) + + for chain_id, chain_data in actual_chain_dict.items(): + chain_name = chains_json_dict[chain_id].get('name') + for chain_asset in chain_data.get('assets'): + asset_symbol = chain_asset['assetLocation'] + try: + asset_in_new_chain_dict = next( + asset for asset in new_chain_dict[chain_id]['assets'] if asset['assetLocation'] == asset_symbol) + except (StopIteration, KeyError): + object_accumulator['chains'][chain_name][asset_symbol] = 'That asset was removed' + continue + for destination in chain_asset.get('xcmTransfers'): + destination_value = destination.get('destination') + destination_chain_id = destination_value.get('chainId') + destination_name = chains_json_dict[destination_chain_id].get('name') + new_destinations = asset_in_new_chain_dict.get('xcmTransfers') + try: + destination_in_new_chain_dict = next( + destination for destination in new_destinations if destination.get('destination').get('chainId') == destination_chain_id) + except StopIteration: + object_accumulator['chains'][chain_name][asset_symbol][destination_name] = 'That destination was removed' + continue + new_destination_value = deep_search_an_elemnt_by_key( + destination_in_new_chain_dict, 'value') + old_destination_value = deep_search_an_elemnt_by_key( + destination_value, 'value') + if new_destination_value != old_destination_value: + object_accumulator['chains'][chain_name][asset_symbol][destination_name] = { + 'old_value': old_destination_value, 'new_value': new_destination_value} + + +def compare_files(actual_json, new_json, chains_json): + """ + This function compare two json files and return dictinary with changes. + Currently it compare reserve fee and destinations + + Args: + actual_json (_type_): This is actual XCM json from master branch + new_json (_type_): This is changed XCM json + chains_json (_type_): This file contains all addition info for chains, from chains/${version}/chains.json + + Returns: + changed_values (json): This json contains all changes. + Example: + { + "reserveFee": {"DOT": {"old_value": 0.1, "new_value": 0.2}}, + "chains": {"Kusama": {"KSM": {"Karura": {"old_value": 0.1, "new_value": 0.2}}}} + } + """ + + changed_values = defaultdict( + lambda: defaultdict(lambda: defaultdict(lambda: {}))) + actual_assets_location = actual_json.get('assetsLocation') + new_assets_location = new_json.get('assetsLocation') + + prod_chain_dict = { + chain.get('chainId'): chain for chain in actual_json.get('chains')} + new_chain_dict = { + chain.get('chainId'): chain for chain in new_json.get('chains')} + + chains_json_dict = {chain.get('chainId'): chain for chain in chains_json} + + compare_reserve_fee( + changed_values, actual_assets_location, new_assets_location) + + compare_destinations(changed_values, prod_chain_dict, + new_chain_dict, chains_json_dict) + + return changed_values + + +def main(argv): + """It will compare transfers.json from endpoint and local file, then print changes. Depends on parametrs it will print changes for dev or prod environment. Also it prepared as to run locally with default parameters, as to run in CI/CD pipeline with parameters from environment variables. + + Args: + argv (array): Array of script arguments + + Raises: + Exception: If script arguments are not valid + """ + + nova_utils_url = "https://raw.githubusercontent.com/novasamatech/nova-utils/master/" + github_base = os.getenv('GITHUB_BASE') + if github_base: + nova_utils_url = f"https://raw.githubusercontent.com/novasamatech/nova-utils/{github_base}/" + + transfers_file = os.getenv("XCM_PATH", "xcm/v4/transfers_dev.json") + chains_url = nova_utils_url + os.getenv("CHAINS_PATH", "chains/v13/chains_dev.json") + + transfers_file_url = nova_utils_url + transfers_file + transfers_from_file = get_data_from_file(transfers_file) + transfers_json_from_master = get_request_via_https(transfers_file_url) + chains_json_from_master = get_request_via_https(chains_url) + result = compare_files(transfers_json_from_master, + transfers_from_file, chains_json_from_master) + if len(result) == 0: + print('๐Ÿค– There is no any significant changes in XCMs') + else: + print('๐Ÿค– The XCM fee has been changed in this PR: \n```json\n', + json.dumps(result, indent=2), '\n```') + + +if __name__ == '__main__': + main(sys.argv[1:]) diff --git a/scripts/update_test_data.py b/scripts/update_test_data.py index 98fcd2e79..4c7ba0ed5 100644 --- a/scripts/update_test_data.py +++ b/scripts/update_test_data.py @@ -1,7 +1,12 @@ import json +import os -with open("chains/v4/chains_dev.json") as fin: +CHAINS_VERISON = os.getenv('CHAINS_VERSION') + +with open(f"chains/{CHAINS_VERISON}/chains_dev.json") as fin: dev_chains = json.load(fin) + # Skip paused networks + dev_chains = [chain for chain in dev_chains if 'PAUSED' not in chain['name']] with open("tests/chains_for_testBalance.json") as fin: test_chains = json.load(fin) @@ -11,7 +16,8 @@ def get_ids(chains): return list(map(lambda x: x["chainId"], chains)) -exludeChains = ['Kintsugi', 'Statemint', 'Singular testnet', 'Interlay', 'Mangata X', 'Arctic Relay Testnet', 'Rococo Testnet'] +exludeChains = ['Kintsugi', 'Interlay', 'Mangata X', 'Fusotao', 'Equilibrium', 'Crust'] +skip_options = ['ethereumBased', 'noSubstrateRuntime', 'testnet'] dev_ids = get_ids(dev_chains) test_ids = get_ids(test_chains) @@ -39,11 +45,18 @@ def del_element(test_ids): 'name': dev_chains[dev_index]['name'], 'account': ' - '} + options = dev_chains[dev_index].get('options') + if (dev_chains[dev_index]['name'] in exludeChains): # Skip some special chains continue + if options is not None: + need_skip = [option for option in skip_options if option in options] + if need_skip: continue + test_chains.append(chain_dict) with open("tests/chains_for_testBalance.json", "w") as fout: json.dump(test_chains, fout, indent=4) + fout.write("\n") diff --git a/scripts/utils/__init__.py b/scripts/utils/__init__.py new file mode 100644 index 000000000..09a280330 --- /dev/null +++ b/scripts/utils/__init__.py @@ -0,0 +1,4 @@ +from . import metadata_interaction +from . import substrate_interface +from . import chain_model +from . import work_with_data diff --git a/tests/utils/chain_model.py b/scripts/utils/chain_model.py similarity index 55% rename from tests/utils/chain_model.py rename to scripts/utils/chain_model.py index 288d8543a..3c7f6d230 100644 --- a/tests/utils/chain_model.py +++ b/scripts/utils/chain_model.py @@ -1,7 +1,11 @@ -from scripts.create_type_file import create_connection_by_url, get_properties +from .substrate_interface import create_connection_by_url +from .metadata_interaction import get_properties + +from substrateinterface import SubstrateInterface class Chain(): + substrate: SubstrateInterface def __init__(self, arg): self.chainId = arg.get("chainId") @@ -15,21 +19,26 @@ def __init__(self, arg): self.substrate = None self.properties = None - def create_connection(self): + def create_connection(self) -> SubstrateInterface: for node in self.nodes: - if (self.substrate): - return self.substrate try: self.substrate = create_connection_by_url(node.get('url')) return self.substrate + # if self.substrate.websocket.connected is True: + # return self.substrate + # print(f"Can't connect to endpoint {node.get('url')} for the {self.name}") except: print("Can't connect to that node") continue - raise TimeoutError("Can't connect to all nodes of network") + print("Can't connect to all nodes of network", self.name) + + + def close_substrate_connection(self): + self.substrate.close() def init_properties(self): if (self.properties): return self.substrate - self.properties = get_properties(self.substrate) \ No newline at end of file + self.properties = get_properties(self.substrate) diff --git a/scripts/utils/metadata_interaction.py b/scripts/utils/metadata_interaction.py new file mode 100644 index 000000000..b7bbb8a78 --- /dev/null +++ b/scripts/utils/metadata_interaction.py @@ -0,0 +1,399 @@ +#!/usr/bin/env python3 +"""That script contains some functions for working with metadata""" + +from substrateinterface import SubstrateInterface, Keypair +from substrateinterface.exceptions import SubstrateRequestException + + +class JsonObject: + """That object is used for creating json object for metadata""" + + def __init__( + self, + runtime_id, + types_balance, + types_index, + types_phase, + types_address, + types_extrinsicSignature, + types_paraId, + types_sp_core_crypto_accountId32, + types_pallet_identity_types_data, + metadata_types, + ) -> None: + self.runtime_id = runtime_id + self.types = {} + json_types = {} + json_types["Balance"] = types_balance + json_types["Index"] = types_index + json_types["Phase"] = types_phase + json_types["Address"] = types_address + json_types["ExtrinsicSignature"] = types_extrinsicSignature + json_types["ParaId"] = types_paraId + event_type = find_certain_type_in_metadata("Event", metadata_types) + call_type = find_certain_type_in_metadata("Call", metadata_types) + json_types[return_type_path(event_type, 'path')] = "GenericEvent" + json_types[return_type_path(call_type, 'path')] = "GenericCall" + json_types["sp_core.crypto.AccountId32"] = types_sp_core_crypto_accountId32 + json_types["pallet_identity.types.Data"] = types_pallet_identity_types_data + self.types.update(json_types) + self.versioning = [] + + def use_v2_weight_mapping(self, runtime_dispatch_info_obj): + self.types["RuntimeDispatchInfo"] = runtime_dispatch_info_obj + + +class Properties: + """That object is used for creating json object for network properties""" + + def __init__( + self, chain_id, chain_name, chain_symbol, chain_precision, chain_prefix + ) -> None: + self.chainId = chain_id + self.name = chain_name + self.symbol = chain_symbol + self.precision = chain_precision + self.ss58Format = chain_prefix + + +def get_properties(substrate: SubstrateInterface) -> Properties: + """Get network properties from metadata + + Args: + substrate (SubstrateInterface): Initialized substrate interface + + Returns: + Properties: Oject with network properties + """ + substrate.get_constant('system', 'ss58Prefix') + symbol = substrate.properties["tokenSymbol"] + + if isinstance(symbol, list): + symbol = substrate.properties["tokenSymbol"][0] + + precision = substrate.properties["tokenDecimals"] + if isinstance(precision, list): + precision = substrate.properties["tokenDecimals"][0] + + data_prop = Properties( + chain_name=substrate.chain, + chain_symbol=symbol, + chain_prefix=substrate.ss58_format, + chain_precision=precision, + + # The genesis hash should be obtained last, because the main object "substrate" may change after the genesis was obtained + chain_id=substrate.get_block_hash(0) + ) + return data_prop + + +def get_metadata_param(substrate: SubstrateInterface) -> JsonObject: + """Generate object for useage as type in chains/**/types/*.json + + Args: + substrate (SubstrateInterface): Initialized substrate interface + + Returns: + JsonObject: Object with types from metadata + """ + try: + metadata = substrate.get_block_metadata() + except Exception as error: + print(f"There is some error with getting metadata from remote, Error:\n{error}") + return None + metadata_is_v14(metadata) + account_does_not_need_updates(substrate) + metadata_types = metadata.value[1]["V14"]["types"]["types"] + can_calculate_fee = check_fee_is_calculating(substrate) + address_type = find_certain_type_in_metadata("MultiAddress", metadata_types) + if address_type is None: # Some network use AccountId32 as base + address_type = find_certain_type_in_metadata("AccountId32", metadata_types) + signature_type_path = find_path_for_type_in_metadata("Signature", metadata_types, check_path='MultiSignature') + if signature_type_path is None: + signature_type = find_certain_type_in_metadata("MultiSignature", metadata_types) + signature_type_path = return_type_path(signature_type, 'path') + + metadata_json = JsonObject( + runtime_id=metadata.runtime_config.active_spec_version_id, + types_balance=substrate.get_type_definition('Balance'), + types_index=substrate.get_type_definition('Index'), + types_phase=find_path_for_type_in_metadata("Phase", metadata_types), + types_address=return_type_path(address_type, 'path'), + types_extrinsicSignature=signature_type_path, + types_paraId="polkadot_parachain.primitives.Id", + types_sp_core_crypto_accountId32="GenericAccountId", + types_pallet_identity_types_data="Data", + metadata_types=metadata_types, + ) + + if can_calculate_fee is False: + runtime_dispatch_info = find_dispatch_info(metadata_types) + metadata_json.use_v2_weight_mapping(runtime_dispatch_info) + + return metadata_json + + +def find_type_id_in_metadata(name, metadata_types, default_path_marker='typeName', check_path=None) -> int: + """Find type id in metadata by type name + + Args: + name (str): Type name to find + metadata_types (array): Array with metadata types + default_path_marker (str, optional): A parameter that specifies a name for the part of the path + in which the script tries to find a specific name. Defaults to 'typeName'. + check_path (string, optional): If not None, then a check is added for the found type + that the path contains the check_path. Defaults to None. + + Raises: + Exception: If can't to find type in metadata by provided parameters + + Returns: + int: Metadata type id for found type + """ + data_set = find_type_in_metadata(name, metadata_types) + for data in data_set: + value = metadata_types + for path in data: + if path == default_path_marker: + if check_path is not None: + if check_runtime_path(metadata_types[value['type']], check_path): + return value['type'] + else: + value = value[path] + continue + elif value.get('type') is None: + return value['index'] + else: + return value['type'] + + value = value[path] + + # if nothing were found, then try to find with another marker + if default_path_marker != 'name': + return find_type_id_in_metadata(name, metadata_types, default_path_marker='name', check_path=check_path) + else: + raise Exception(f"Can't find type_id for {name}") + + +def find_dispatch_info(metadata_types) -> dict: + """Generate RuntimeDispatchInfo object from metadata + + Args: + metadata_types (array): Array with metadata types + + Returns: + dict: Formated object to usage in types file + """ + dispatch_info = find_certain_type_in_metadata('DispatchInfo', metadata_types) + weight, dispatch_class, _ = dispatch_info['type']['def']['composite']['fields'] + dispatch_class_path = return_type_path( + metadata_types[dispatch_class['type']], 'path') + weight_path = return_type_path( + metadata_types[weight['type']], 'path') + dispatch_info_object = {"type": "struct", "type_mapping": [["weight", weight_path], [ + "class", dispatch_class_path], ["partialFee", "Balance"]]} + return dispatch_info_object + + +def find_path_for_type_in_metadata(name, metadata_types, check_path=None): + """Find path for type in metadata + + Args: + name (str): Type name to find + metadata_types (array): Array with metadata types + check_path (str, optional): If not None will check found result, + that path is contains provided string. Defaults to None. + + Returns: + str: Path for found type + """ + type_id = find_type_id_in_metadata(name, metadata_types, check_path=check_path) + return return_type_path(metadata_types[type_id], "path") + + +def find_certain_type_in_metadata(name, metadata_types): + """Found type in metadata by name + + Args: + name (str): Type name to find + metadata_types (array): Array with metadata types + + Returns: + obj: Found type as object + """ + + if name in ['Event', 'Call']: + new_path = find_certain_type_in_metadata( + 'Runtime'+name, metadata_types) + if new_path: + return new_path + + data_set = find_type_in_metadata(name, metadata_types) + if len(data_set) == 1: + type_id = data_set[0][0] + return metadata_types[type_id] + + for data in data_set: + value = metadata_types + for path in data: + if path == 'path': + if any(call in name for call in ('Event', 'Call')): + if check_runtime_path(metadata_types[data[0]], 'runtime'): + return metadata_types[data[0]] + else: + value = value[path] + continue + else: + return metadata_types[data[0]] + value = value[path] + + +def check_runtime_path(runtime_type, part_of_path) -> bool: + """Check that runtime type path contains provided string + + Args: + runtime_type (dict): Runtime type + part_of_path (str): Part of path to check + + Returns: + bool: True if path contains provided string, otherwise False + """ + + runtime_path = runtime_type['type']['path'] + if bool(part_of_path in ".".join(runtime_path)): + if len(runtime_path) <= 3: + return True + return False + + +def check_fee_is_calculating(substrate: SubstrateInterface) -> bool: + """Check that substrate can calculate fee + + Args: + substrate (SubstrateInterface): Initialized substrate interface + + Returns: + bool: True if substrate can calculate fee, otherwise False + """ + + test_keypair = Keypair.create_from_uri('//Alice') + try: + call = substrate.compose_call( + call_module='Balances', + call_function='transfer', + call_params={ + 'dest': test_keypair.ss58_address, + 'value': 0, + } + ) + query_info = substrate.get_payment_info(call=call, keypair=test_keypair) + return True + except ValueError as value_error: + print(f"Case when Balance pallet not found:\n{value_error}") + return True + except SubstrateRequestException as substrate_error: + print(f"Can't calculate fee, error is: \n{substrate_error}") + if "failed to decode" in substrate_error.args[0]['data'].lower(): + return False + else: + return True + except Exception as err: + print(f"Can't calculate fee by another reason error is: \n{err}") + return True + + +def return_type_path(metadata_type, search_key) -> str: + found_path = deep_search_an_elemnt_by_key(metadata_type, search_key) + return ".".join(found_path) + + +def find_type_in_metadata(name, metadata_types) -> list: + """Find all types in metadata by name + + Args: + name (str): _description_ + metadata_types (list): List with metadata types + + Returns: + list: All found types + """ + + return_data = [] + for item in find_in_obj(metadata_types, name): + return_data.append(item) + return return_data + + +def metadata_is_v14(metadata): + if "V14" in metadata.value[1].keys(): + return True + else: + raise Exception("It's not a v14 runtime: %s" % (metadata.value[1].keys())) + + +def account_does_not_need_updates(substrate: SubstrateInterface): + keypair = Keypair.create_from_uri("//Alice") + try: + account_info = substrate.query("System", "Account", params=[keypair.ss58_address]) + # except ValueError as value_error: + # print(f"Error while getting an account info:\n{value_error}") + # account_info = substrate.query("System", "Account", params=['0xC4d9Aa77d94c36D737c5A25F5CdD0FCC7BAEf963']) + except Exception as error: + raise Exception(f"Can't get account info for {substrate.chain}, Error:\n{error}") + + elements = ["nonce", "free", "reserved", "misc_frozen", "fee_frozen"] + if len(account_info.value["data"]) != 4: + print("โŒ Account info is changed: %s โŒ " % (account_info)) + for element in elements: + if element in account_info: + continue + elif element in account_info["data"]: + continue + else: + print("โŒ Account info is changed: %s โŒ " % (account_info)) + + +def deep_search_an_elemnt_by_key(obj, key): + if key in obj: return obj[key] + for k, v in obj.items(): + if isinstance(v,dict): + item = deep_search_an_elemnt_by_key(v, key) + if item is not None: + return item + if isinstance(v, tuple): + for element in v: + if isinstance(element, dict): + tuple_item = deep_search_an_elemnt_by_key(element, key) + if tuple_item is not None: + return tuple_item + + +def find_in_obj(obj, condition, path=None): + + if path is None: + path = [] + + # In case this is a list + if isinstance(obj, list): + for index, value in enumerate(obj): + new_path = list(path) + new_path.append(index) + for result in find_in_obj(value, condition, path=new_path): + yield result + + # In case this is a dictionary + if isinstance(obj, dict): + for key, value in obj.items(): + new_path = list(path) + new_path.append(key) + for result in find_in_obj(value, condition, path=new_path): + yield result + + if condition == key: + new_path = list(path) + new_path.append(key) + yield new_path + + if condition == obj: + new_path = list(path) + yield new_path diff --git a/scripts/utils/substrate_interface.py b/scripts/utils/substrate_interface.py new file mode 100644 index 000000000..fd1dcf657 --- /dev/null +++ b/scripts/utils/substrate_interface.py @@ -0,0 +1,37 @@ +#!/usr/bin/env python3 +"""That script is used for creating substrate connection for all other scripts""" + +from substrateinterface import SubstrateInterface + +default_ws_options = { + "auto_reconnect": True, + "reconnect_interval": 5, + "max_reconnects": 5, + "ping_interval": 5, + "ping_timeout": 10, + "pong_timeout": 10, + "headers": {"Origin": "polkadot.js.org"} +} + +def create_connection_by_url(url, use_remote_preset=False, ws_otpions=default_ws_options) -> SubstrateInterface: + """Returns substrate interface object + + Args: + url (str): Websocket url + use_remote_preset (bool, optional): When True preset is downloaded from Github master + of https://github.com/polkascan/py-substrate-interface. Defaults to False. + ws_otpions (obj, optional): Parameters for websocket connection itself. + Defaults to default_ws_options. + + Returns: + SubstrateInterface: _description_ + """ + try: + substrate = SubstrateInterface( + url=url, use_remote_preset=use_remote_preset, ws_options=ws_otpions + ) + except Exception as err: + print(f"โš ๏ธ Can't connect by {url}, check it is available? \n {err}") + raise + + return substrate diff --git a/scripts/utils/work_with_data.py b/scripts/utils/work_with_data.py new file mode 100644 index 000000000..ff6b4e310 --- /dev/null +++ b/scripts/utils/work_with_data.py @@ -0,0 +1,37 @@ +import os +import json +import requests + + +def get_request_via_https(url) -> json: + try: + response = requests.get(url, timeout=60) + response.raise_for_status() + data = response.json() + return data + except requests.exceptions.RequestException as request_error: + raise SystemExit(request_error) + + +def get_network_list(path): + + dn = os.path.abspath('./') + try: + with open(dn + path) as fin: + chains_data = json.load(fin) + except: + raise + + return chains_data + + +def get_data_from_file(file_path): + with open(file_path, encoding='UTF-8') as fin: + return json.load(fin) + + +def write_data_to_file(name, data: str): + + with open(name, "w") as file: + file.write(data) + file.write("\n") diff --git a/tests/chains_for_testBalance.json b/tests/chains_for_testBalance.json index 577be6fb5..90901f458 100644 --- a/tests/chains_for_testBalance.json +++ b/tests/chains_for_testBalance.json @@ -42,7 +42,7 @@ { "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", "name": "Bifrost", - "account": "0xee98c02253479726b456f3f7c5a9014d0198f53717de881c15f85becd706313c" + "account": "0xd2f4a1145d6af282a61d8cd8a4d93234232185d07a51f04b43ce593c1e274c2c" }, { "chainId": "742a2ca70c2fda6cee4f8df98d64c4c670a052d9568058982dad9d5a7a135c5b", @@ -52,7 +52,7 @@ { "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", "name": "Khala", - "account": "0x6d6f646c7068616c612f62670000000000000000000000000000000000000000" + "account": "0x777068612f000000000000000000000000000000000000000000000000000000" }, { "chainId": "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21", @@ -107,7 +107,7 @@ { "chainId": "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc", "name": "Picasso", - "account": "0xe29a3f1571721bdbda403d5ebaf976b6ce9aab4617a29c13794c4ecc19f48d7d" + "account": "0xf4e1c97dcc726a61a3ae720c00ddbdb2bb34fdd405fc0c4b8348d254619fa9fa" }, { "chainId": "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c", @@ -119,21 +119,11 @@ "name": "Centrifuge Parachain", "account": "0xb03cd3fb823de75f888ac647105d7820476a6b1943a74af840996d2b28e64017" }, - { - "chainId": "0bd72c1c305172e1275278aaeb3f161e02eccb7a819e63f62d47bd53a28189f8", - "name": "Subsocial Solochain", - "account": "0x24d6d8fc5d051fd471e275f14c83e95287d2b863e4cc802de1f78dea06c6ca78" - }, { "chainId": "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060", "name": "Zeitgeist", "account": "0x524e9aac979cbb9ecdb7acd1635755c3b15696321a3345ca77f0ab0ae23f675a" }, - { - "chainId": "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da", - "name": "KICO", - "account": "0xfcacdc1b0849908f55623b4249ab6c63823122703c6fa9e223e15c0b0fffd371" - }, { "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", "name": "Westmint", @@ -144,36 +134,21 @@ "name": "Moonbase Alpha", "account": "0xecfd4b7d4e25c55439d8e111812d47ee3e029909" }, - { - "chainId": "5c562e6300954998233c9a40b6b86f3028977e6d32d0da1af207738d19f98c1b", - "name": "Acala Mandala", - "account": "0xae11d3c53a718499271a1e3ef920d888a7d4fac98a1c2f636d1375ba8314fb3a" - }, { "chainId": "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b", "name": "Encointer", "account": "0xa01b1aa000939d05e293a6b017b728d9ec763ed6adbe8eb5ea99937f2931dc05" }, - { - "chainId": "eac895d7768b17837a9c3a9f0280c01502c3ef40193df923490a0fa9c60ea076", - "name": "Crab", - "account": "0x129d025b24257aabdefac93d00419f06a38e3a5e2314dd6866b16e8f205ce074" - }, { "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", "name": "Subsocial Parachain", - "account": "0xd8ff756a738d21206cda2584c521beb0f28b6107847c5ebbacee10d2e1f7f067" + "account": "0xc261b264bdd11a41bd20702fb3119fffc00f49d035d4efc219cdb217448ec353" }, { "chainId": "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc", "name": "Crust Shadow", "account": "0xa63ad692b7f487b32c9c88ebd3a486e4ccf4aa258093d7c690925c5f62dedf4d" }, - { - "chainId": "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f", - "name": "Efinity", - "account": "0x08419d5c2ba357795bf9bd8b3c973d741518fa35c741832db5b5e3ad33a00523" - }, { "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", "name": "HydraDX", @@ -182,7 +157,7 @@ { "chainId": "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21", "name": "Nodle Parachain", - "account": "0x0c4b6f3ee4dcd1288b6886f52f9d779d6e3d436f3543fde14a1e352f03aefd71" + "account": "0x6d6f646c70792f72657372760000000000000000000000000000000000000000" }, { "chainId": "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736", @@ -192,7 +167,7 @@ { "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", "name": "Turing", - "account": "0x488ced7d199b4386081a52505962128da5a3f54f4665db3d78b6e9f9e89eea4d" + "account": "0xde6c3184c7b03cf3d3623d079a033b007aab9e09f04ee8764490b254d596b57f" }, { "chainId": "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da", @@ -207,7 +182,7 @@ { "chainId": "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d", "name": "Composable Finance", - "account": "0x407648a7a9cdd55870785b8d3efb884618a9a6144cf15e3c45a493362675dc0f" + "account": "0xb4a559cd866a3b103fdcfc261170b6acdd55f1a39f505981ad2e350a5a3b3217" }, { "chainId": "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c", @@ -224,11 +199,6 @@ "name": "Altair", "account": "0x6d6f646c70792f74727372790000000000000000000000000000000000000000" }, - { - "chainId": "a0c6e3bac382b316a68bca7141af1fba507207594c761076847ce358aeedcc21", - "name": "KILT Peregrine", - "account": "0xde0e5233c3471ca5faa5b90d1ac78cc42fbe9ac64151805f994c659fbda0d302" - }, { "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", "name": "Bifrost Polkadot", @@ -244,11 +214,6 @@ "name": "UNIQUE", "account": "0x0ea4c0330527235090286f906763f5dce6ee76cb8d91916185e0e071dce7356d" }, - { - "chainId": "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14", - "name": "Dora Factory", - "account": "0x1c78db691342ffdd4d23a3b3a13e55e4939fbc01c2021d87c98139c5a1ff9a4c" - }, { "chainId": "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174", "name": "OriginTrail Parachain", @@ -264,34 +229,189 @@ "name": "Moonbase Relay Testnet", "account": "0xb48663c0c39f8b6f69550dd2d7af070e0b638d675643b50b91bc45ac6e946d5c" }, - { - "chainId": "3c3183f6d701500766ff7d147b79c4f10014a095eaaa98e960dcef6b3ead50ee", - "name": "Polymesh Testnet", - "account": "0x563197a71bfb6066e1b48923279f4ce8c31eeb15270c31d75f637c7fbc192177" - }, - { - "chainId": "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5", - "name": "Pichiu", - "account": "0xfab8f4d540d69953f04b3afdd3e3df57937a4a24de85217f3bdeed59f62d7d17" - }, { "chainId": "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7", "name": "Kabocha", "account": "0x2a6a802c4ea04e94d5d1788fede99e91b9df2c36c2a79388508d253bb426a45f" }, - { - "chainId": "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21", - "name": "Tanganika", - "account": "0x32f763291ff1963cdf1944539ea99fc3735a7d6f6689ba49bee01f3bc77b0648" - }, { "chainId": "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14", "name": "Bajun", "account": "0x826939f45e70591448e916f5093700a02d0c4bbf677cf1a946279813f37b0e32" }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "name": "Tinkernet", + "account": "0xea55d832eda0d27865866ef6b01c4edf6bf83bf6d33784e9bc03c8289d2e7239" + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "name": "Statemint", + "account": "0xaa41228830918cc1cf16e50df86ba154a483d77ebe3182bacfb876af4fe9ff6b" + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "name": "Amplitude", + "account": "0xe6a6e0982d8789297512734b05a3b6992cc844b70697435cf88eccd902675431" + }, + { + "chainId": "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e", + "name": "Ternoa", + "account": "0xc039ee91ae16d7abcfaa91f7099498c4ac51fde4798fb58e626644fdc632814d" + }, + { + "chainId": "6fbd74e5e1d0a61d52ccfe9d4adaed16dd3a7caa37c6bc4d0c2fa12e8b2f4063", + "name": "Polymesh Mainnet", + "account": "0xf2aee43ecd134756088d19159a44f8733c36d8d5fd63fc9ffb8821b4ad148a7e" + }, + { + "chainId": "6f0f071506de39058fe9a95bbca983ac0e9c5da3443909574e95d52eb078d348", + "name": "DAO IPCI", + "account": "0x9ce0033ab3ffd86dd5fd3a21a4dbd28ee263bffb12e10480f43f17751cba6dd2" + }, + { + "chainId": "74ed91fbc18497f011290f9119a2217908649170337b6414a2d44923ade07063", + "name": "Myriad", + "account": "0xbabdeafb82f8ebb4d2fda53b4bcbadef9cb04e6a6eb49a8aaa6816cc20036c7c" + }, + { + "chainId": "50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", + "name": "XX network", + "account": "0xeec53524b5e3a8d26b40aefd1f2202e5c475ca0004fd62ab0f47e3bb9dcc2c3a" + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "name": "Pendulum", + "account": "0xa06a540941cca06820f50953e30b9a2c4da3c8b5b8bc828083f211f7d8b7d4e4" + }, + { + "chainId": "8b5c955b5c8fd7112562327e3859473df4e3dff49bd72a113dbb668d2cfa20d7", + "name": "Aventus", + "account": "0xe21fac4b8850455afefd5820270b5287f55ea7a14bae56912b460c7342c9ef34" + }, + { + "chainId": "4319cc49ee79495b57a1fec4d2bd43f59052dcc690276de566c2691d6df4f7b8", + "name": "Crust Polkadot Parachain", + "account": "0x0a2831bc1a5cfdfd6aca13c77cf934fdf2a6010d041d4d76a62698cd58c87956" + }, + { + "chainId": "dce5477cfca571c2cb652f38bbb70429004be3cf9649dd2b4ad9455b2251fe43", + "name": "Hashed Network", + "account": "0x28e9ee1cfb3d986c0982ccb3aca95fc38d7522d57bdf1bec19a9e966f7369d70" + }, + { + "chainId": "2f0555cc76fc2840a25a6ea3b9637146806f1f44b090c175ffde2a7e5ab36c03", + "name": "Bittensor", + "account": "0xcc21ceaa4c63ce0feedf24984a4983e078ce46e146df91e7904eb646ed80403e" + }, + { + "chainId": "6c5894837ad89b6d92b114a2fb3eafa8fe3d26a54848e3447015442cd6ef4e66", + "name": "3DPass", + "account": "0x1e94d618d7699c88c5ece5a973ca3ddcaf5bdf9817d179f47561b291a0569c4c" + }, + { + "chainId": "e358eb1d11b31255a286c12e44fe6780b7edb171d657905a97e39f71d9c6c3ee", + "name": "Ajuna", + "account": "0x16f81562c3312515c5cd1ae97280964cf39c8f59c0934e1eb5374bb0e5bfb00a" + }, { "chainId": "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89", "name": "Imbue", - "account": "0x9a64ad79179d3f9e018447fa67d8d05d92f0d82e4dc731d14e516ae10a25d924" + "account": "0x5abf9818a736344894d068411fdb13d12e820b8cb03165da1c4e2fdea326bf5e" + }, + { + "chainId": "4a587bf17a404e3572747add7aab7bbe56e805a5479c6c436f07f36fcc8d3ae1", + "name": "Frequency", + "account": "0x81012392fbb505daf01f5d0d396255a065b37f5b861e41b439ac7e614591cdd9" + }, + { + "chainId": "fe1b4c55fd4d668101126434206571a7838a8b6b93a6d1b95d607e78e6c53763", + "name": "Vara", + "account": "0x48420d4d8d8e91cf38f464047ce748e432b0236045e05aa0b8878a7648937d43" + }, + { + "chainId": "49f4849244114177544d73d2412289f6d73a892b9eb1ca97cef81c9c0c9ec0ff", + "name": "GIANT", + "account": "0x0017d5bf525454578edba65dbe3738fa76b77d0b573810f1a0423571abb32a58" + }, + { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "name": "Kusama Bridge Hub", + "account": "0x72a5376b58ed027e2aeb7093e96e6a3c67a5562ba8dc883562cb88ceefcc3c16" + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "name": "Polkadot Collectives", + "account": "0x5270ec35ba01254d8bff046a1a58f16d3ae615c235efd6e99a35f233b2d9df2c" + }, + { + "chainId": "b3dd5ad6a82872b30aabaede8f41dfd4ff6c32ff82f8757d034a45be63cf104c", + "name": "krest", + "account": "0x6678fd94b848f5d1e741196bd6d99c63f6f176c3ad8f906780935b1d48562d20" + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "name": "Manta", + "account": "0xfb1818aca757d6bc9aa65c3a94f5a39ff1edbd92e47311c91ace601676168703" + }, + { + "chainId": "3af4ff48ec76d2efc8476730f423ac07e25ad48f5f4c9dc39c778b164d808615", + "name": "Enjin Matrixchain", + "account": "0xae15009cdde97c2e28d430224ca3a119311f41ef15153854b2c62eb770b0fd3e" + }, + { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "name": "Polkadot Bridge Hub", + "account": "0xe27cf0ba46292cc95548cd67e3e29036b0eaf1ab66a4a6f5d7065408d50b9759" + }, + { + "chainId": "161db6cdc5896fe55ef12b4778fe78dd65d7af43f65c601786b88d7a93ebc58a", + "name": "Watr", + "account": "0x5e116408c9f67a93792d33e14a6fd47daad034f691d0c22abd7173c5378f384a" + }, + { + "chainId": "6b5e488e0fa8f9821110d5c13f4c468abcd43ce5e297e62b34c53c3346465956", + "name": "Joystream", + "account": "0x30fff4fabd96490c5ae68fe25ac674dee038cb38f286b262e9cfd123ff58ca75" + }, + { + "chainId": "6bfe24dca2a3be10f22212678ac13a6446ec764103c0f3471c71609eac384aae", + "name": "Dock", + "account": "0x9321f7238fbca5fe72f4ffc37d9748b38009972f7c4cea97055e56eac851bc59" + }, + { + "chainId": "7eb9354488318e7549c722669dcbdcdc526f1fef1420e7944667212f3601fdbd", + "name": "Polimec", + "account": "0x6603f63a4091ba074b4384e64c6bba1dd96f6af49331ebda686b0a0f27dd961c" + }, + { + "chainId": "5a51e04b88a4784d205091aa7bada002f3e5da3045e5b05655ee4db2589c33b5", + "name": "Energy Web X", + "account": "0x8e869ed0c80d0474cfe04a4fd05f7204f5530632a7fb238c6a405003288d3008" + }, + { + "chainId": "31a7d8914fb31c249b972f18c115f1e22b4b039abbcb03c73b6774c5642f9efe", + "name": "InvArch", + "account": "0x3c4679c868ee7edce446812310d0d952374157ea2f68a9d3afb0c0207b272a49" + }, + { + "chainId": "7bbb72faf3d6d997ebe622a4e0ebfb6fdacf905b6141c86a3122cd479213a8d8", + "name": "Rolimec Rococo", + "account": "0x5cfad400109a799b73f9e5702f80f74b33f7c6a888affcdbe11bbaf4a988ce69" + }, + { + "chainId": "ae1ca86c936aa252cdc45f4f436220567b2bbbcc4834f5b8f4191462baf19dfb", + "name": "Continuum", + "account": "0x6d6f646c6269742f747273790000000000000000000000000000000000000000" + }, + { + "chainId": "d8761d3c88f26dc12875c00d3165f7d67243d56fc85b4cf19937601a7916e5a9", + "name": "Enjin Relay", + "account": "0x6d6f646c70792f78636d63680000000000000000000000000000000000000000" + }, + { + "chainId": "1d73b9f5dc392744e0dee00a6d6254fcfa2305386cceba60315894fa4807053a", + "name": "Curio", + "account": "0xf68bacd4e8b8c2bbf7012307a806ea37490107c63c0eb5b8cb1ddd43a3c52f62" } -] \ No newline at end of file +] diff --git a/tests/compare_dev_with_prod.py b/tests/compare_dev_with_prod.py index fc8dad56c..5391ba322 100644 --- a/tests/compare_dev_with_prod.py +++ b/tests/compare_dev_with_prod.py @@ -1,7 +1,9 @@ -import deepdiff from pprint import pprint import json +import os +import deepdiff +CHAINS_VERISON = os.getenv('CHAINS_VERSION', default = "v9") def compare_network(prod, dev): for network in prod: @@ -12,12 +14,11 @@ def compare_network(prod, dev): pprint(diff, indent=2) -with open("chains/v4/chains_dev.json") as fin: +with open(f"chains/{CHAINS_VERISON}/chains_dev.json") as fin: dev_chains = json.load(fin) -with open("chains/v4/chains.json") as fin: +with open(f"chains/{CHAINS_VERISON}/chains.json") as fin: prod_chains = json.load(fin) compare_network(prod_chains, dev_chains) - diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 000000000..6a0ac0a60 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,70 @@ +import pytest +import allure + +from func_timeout import func_timeout, FunctionTimedOut +from scripts.utils.chain_model import Chain +from scripts.utils.metadata_interaction import get_properties +from scripts.utils.substrate_interface import create_connection_by_url +from tests.data.setting_data import collect_nodes_for_chains, get_substrate_chains + +FIXTURE_TIMEOUT = 15 + +chain_names = [ + f'Test for {task.name}' + for task in get_substrate_chains() +] + +task_ids = [ + f'Test for {task["name"]}, url: {task["url"]}' + for task in collect_nodes_for_chains(get_substrate_chains()) +] + + +class FixtureTimeoutError(Exception): + pass + + +def execute_with_timeout(timeout: int, function, args: tuple, error_message: str): + try: + return func_timeout(timeout=timeout, func=function, args=args) + except FunctionTimedOut: + with allure.step("Function timed out"): + allure.attach(name="Error", body=error_message, + attachment_type=allure.attachment_type.TEXT) + raise FixtureTimeoutError(error_message) + + +@pytest.fixture(scope="module", params=collect_nodes_for_chains(get_substrate_chains()), ids=task_ids) +def connection_by_url(request): + data = request.param + connection = execute_with_timeout( + timeout=FIXTURE_TIMEOUT, + function=create_connection_by_url, + args=(data["url"],), + error_message=f'Timeout {FIXTURE_TIMEOUT} when creating connection: {data["url"]}' + ) + execute_with_timeout( + timeout=FIXTURE_TIMEOUT, + function=get_properties, + args=(connection,), + error_message=f'Timeout {FIXTURE_TIMEOUT} when getting properties: {data["url"]}' + ) + return connection + + +@pytest.fixture(scope="module", params=get_substrate_chains(), ids=chain_names) +def chain_model(request) -> Chain: + chain = request.param + execute_with_timeout( + timeout=FIXTURE_TIMEOUT, + function=chain.create_connection, + args=(), + error_message=f'Timeout {FIXTURE_TIMEOUT} when creating connection: {chain.name}' + ) + execute_with_timeout( + timeout=FIXTURE_TIMEOUT, + function=chain.init_properties, + args=(), + error_message=f'Timeout {FIXTURE_TIMEOUT} when initializing properties: {chain.name}' + ) + return chain diff --git a/tests/data/setting_data.py b/tests/data/setting_data.py new file mode 100644 index 000000000..4b53a219d --- /dev/null +++ b/tests/data/setting_data.py @@ -0,0 +1,57 @@ +import os + +from typing import List +from scripts.utils.work_with_data import get_network_list +from scripts.utils.chain_model import Chain + +network_file_path = os.getenv('CHAINS_JSON_PATH', "chains/v15/chains.json") +skipped_networks = ['Edgeware'] +network_list = get_network_list('/' + network_file_path) + + +def get_substrate_chains() -> list[Chain]: + substrate_chains = [] + for data in network_list: + if data.get('name') in skipped_networks or 'PAUSED' in data.get('name'): + continue + options = data.get('options') + + if options is None: + substrate_chains.append(Chain(data)) + elif 'noSubstrateRuntime' not in options: + substrate_chains.append(Chain(data)) + else: + continue + + return substrate_chains + + +def get_ethereum_chain(): + eth_chains = [] + for data in network_list: + if data.get('chainId') == 'eip155:1': + eth_chains.append(Chain(data)) + + return eth_chains + + +def collect_nodes_for_chains(networks: List[Chain]): + result = [] + for network in networks: + for node in network.nodes: + result.append( + {"url": node.get("url"), "name": network.name}) + + return result + + +def collect_rpc_nodes_for_chains(networks: List[Chain]): + result = [] + for network in networks: + for node in network.nodes: + if 'https' in node.get("url"): + result.append( + {"url": node.get("url"), "name": network.name} + ) + + return result diff --git a/tests/data/xcm_data.json b/tests/data/xcm_data.json new file mode 100644 index 000000000..70368a551 --- /dev/null +++ b/tests/data/xcm_data.json @@ -0,0 +1,1590 @@ +{ + "aa3876c1dc8a1afcc2e9a685a49ff7704cfd36ad8c90bf2702b9d1b00cc40011": { + "name": "Altair", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 349914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 474914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": { + "name": "Acala", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 299913702000, + "max_total": 350000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 150000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": { + "name": "Moonriver", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "70255b4d28de0fc4e1a193d7e175ad1ccef431598211c55538f1018651a0344e": { + "name": "Aleph Zero", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 400000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 259875000000, + "max_total": 300000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 359875000000, + "max_total": 400000000000, + "reserved": 100000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": { + "name": "Moonbeam", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 324914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 449914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "1bf2a2ecb4a868de66ea8610f2ce7c8c43706561b6476031315f6640fe38e060": { + "name": "Zeitgeist", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 324875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 449875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "0bd72c1c305172e1275278aaeb3f161e02eccb7a819e63f62d47bd53a28189f8": { + "name": "Subsocial Solochain", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 1299875000000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 1799875000000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "19a3733beb9cb8a970a308d835599e9005e02dc007a35440e461a451466776f8": { + "name": "GM", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": { + "name": "Parallel", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 1299913702000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 1799913702000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": { + "name": "Westend", + "BlockWeights": { + "base_block": { + "ref_time": 4970728000 + }, + "max_block": { + "ref_time": 2000000000000 + }, + "per_class": { + "normal": { + "base_extrinsic": { + "ref_time": 79088000 + }, + "max_extrinsic": { + "ref_time": 1479920912000 + }, + "max_total": { + "ref_time": 1500000000000 + }, + "reserved": { + "ref_time": 0 + } + }, + "operational": { + "base_extrinsic": { + "ref_time": 79088000 + }, + "max_extrinsic": { + "ref_time": 1979920912000 + }, + "max_total": { + "ref_time": 2000000000000 + }, + "reserved": { + "ref_time": 500000000000 + } + }, + "mandatory": { + "base_extrinsic": { + "ref_time": 79088000 + }, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "e7e0962324a3b86c83404dbea483f25fb5dab4c224791c81b756cfc948006174": { + "name": "OriginTrail Parachain", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "feb426ca713f0f46c96465b8f039890370cf6bfd687c9076ea2843f58a6ae8a7": { + "name": "Kabocha", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": { + "name": "HydraDX", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 362375000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 487375000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "35a06bfec2edf0ff4be89a6428ccd9ff5bd0167d618c5a0d4341f9600a458d14": { + "name": "Bajun", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": { + "name": "Mangata X", + "BlockWeights": { + "base_block": 12000000000, + "max_block": 250000000000, + "per_class": { + "normal": { + "base_extrinsic": 186000000, + "max_extrinsic": 174814000000, + "max_total": 187500000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 186000000, + "max_extrinsic": 237314000000, + "max_total": 250000000000, + "reserved": 62500000000 + }, + "mandatory": { + "base_extrinsic": 186000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "411f057b9107718c9624d6aa4a3f23c1653898297f3d4d529d9bb6511a39dd21": { + "name": "KILT Spiritnet", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 324914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 449914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "name": "Statemint", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "335369975fced3fc22e23498da306a712f4fd964c957364d53c49cea9db8bc2f": { + "name": "Efinity", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 1299875000000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 1799875000000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": { + "name": "Polkadot", + "BlockWeights": { + "base_block": 5852263000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 85212000, + "max_extrinsic": 1479914788000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85212000, + "max_extrinsic": 1979914788000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 85212000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": { + "name": "Interlay", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 1299914205000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 1799914205000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "84322d9cddbf35088f1e54e9a85c967a41a56a4f43445768125e61af166c7d31": { + "name": "UNIQUE", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 324914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 449914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "6859c81ca95ef624c9dfe4dc6e3381c33e5d6509e35e147092bfbc780f777c4e": { + "name": "Ternoa", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 1479875000000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 1979875000000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": { + "name": "Basilisk", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 200000000, + "max_extrinsic": 362300000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 200000000, + "max_extrinsic": 487300000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 200000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": { + "name": "Kintsugi", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 1299914205000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 1799914205000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "name": "Statemine", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": { + "name": "Parallel Heiko", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 1299913702000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 1799913702000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "daab8df776eb52ec604a5df5d388bb62a050a0aaec4556a64265b9d42755552d": { + "name": "Composable Finance", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 349914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 474914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": { + "name": "Robonomics", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "6811a339673c9daa897944dcdac99c6e2939cc88245ed21951a0a3c9a2be75bc": { + "name": "Picasso", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 349914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 474914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "cd4d732201ebe5d6b014edda071c4203e16867305332301dc8d092044b28e554": { + "name": "QUARTZ", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 324914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 449914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "eacdd2d5b42de9769ccbb6e8d9013ab0d90ab105bf601d4aac53e874c145ec21": { + "name": "Tanganika", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 349914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 474914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "97da7ede98d7bad4e36b4d734b6055425a3be036da2a332ea5a7037656427a21": { + "name": "Nodle Parachain", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "da5831fbc8570e3c6336d0d72b8c08f8738beefec812df21ef2afc2982ede09c": { + "name": "Litmus", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": { + "name": "Turing", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "7dd99936c1e9e6d1ce7d90eb6f33bea8393b4bf87677d675aa63c9cb3e8c5b5b": { + "name": "Encointer", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": { + "name": "Centrifuge Parachain", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 349914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 474914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1": { + "name": "Calamari", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 299913702000, + "max_total": 350000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 150000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "2fc8bb6ed7c0051bdcf4866c322ed32b6276572713607e3297ccf411b8f14aa9": { + "name": "Litentry", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "52149c30c1eb11460dce6c08b73df8d53bb93b4a15d0a2e7fd5dafe86a73c0da": { + "name": "KICO", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "d4c0c08ca49dc7c680c3dac71a7c0703e5b222f4b6c03fe4c5219bb8f22c18dc": { + "name": "Crust Shadow", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 1299875000000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 1799875000000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": { + "name": "Kusama", + "BlockWeights": { + "base_block": 6192341000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 86309000, + "max_extrinsic": 1479913691000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86309000, + "max_extrinsic": 1979913691000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 86309000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "ca93a37c913a25fa8fdb33c7f738afc39379cb71d37874a16d4c091a5aef9f89": { + "name": "Imbue", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "f22b7850cdd5a7657bbfd90ac86441275bbc57ace3d2698a740c7b0ec4de5ec3": { + "name": "Bit.Country Pioneer", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 349914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 474914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": { + "name": "Karura", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 299913702000, + "max_total": 350000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 150000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "577d331ca43646f547cdaa07ad0aa387a383a93416764480665103081f3eaf14": { + "name": "Dora Factory", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "1bb969d85965e4bb5a651abbedf21a54b6b31a21f66b5401cc3f1e286268d736": { + "name": "Phala", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 349913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 474913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": { + "name": "Khala", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 349913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 474913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "3920bcb4960a1eef5580cd5367ff3f430eef052774f78468852f7b9cb39f8a3c": { + "name": "Polkadex Solochain", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 4000000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 2599875000000, + "max_total": 3000000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 3599875000000, + "max_total": 4000000000000, + "reserved": 1000000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": { + "name": "Astar", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": { + "name": "Shiden", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "cdedc8eadbfa209d3f207bba541e57c3c58a667b05a2e1d1e86353c9000758da": { + "name": "Integritee Parachain", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 349913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 474913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "5c7bd13edf349b33eb175ffae85210299e324d852916336027391536e686f267": { + "name": "CLV Parachain", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 2000000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 1449914205000, + "max_total": 1500000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 1949914205000, + "max_total": 2000000000000, + "reserved": 500000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": { + "name": "Bifrost Kusama", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": { + "name": "Bifrost Polkadot", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 324913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 449913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "eac895d7768b17837a9c3a9f0280c01502c3ef40193df923490a0fa9c60ea076": { + "name": "Crab", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": { + "name": "Amplitude", + "BlockWeights": { + "base_block": 5000000000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 125000000, + "max_extrinsic": 349875000000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 125000000, + "max_extrinsic": 474875000000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 125000000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": { + "name": "Tinkernet", + "BlockWeights": { + "base_block": 5346284000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 86298000, + "max_extrinsic": 349913702000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 86298000, + "max_extrinsic": 474913702000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 86298000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + }, + "0e06260459b4f9034aba0a75108c08ed73ea51d2763562749b1d3600986c4ea5": { + "name": "Pichiu", + "BlockWeights": { + "base_block": 5343308000, + "max_block": 500000000000, + "per_class": { + "normal": { + "base_extrinsic": 85795000, + "max_extrinsic": 349914205000, + "max_total": 375000000000, + "reserved": 0 + }, + "operational": { + "base_extrinsic": 85795000, + "max_extrinsic": 474914205000, + "max_total": 500000000000, + "reserved": 125000000000 + }, + "mandatory": { + "base_extrinsic": 85795000, + "max_extrinsic": null, + "max_total": null, + "reserved": null + } + } + } + } +} diff --git a/tests/test_can_query_base_parameters.py b/tests/test_can_query_base_parameters.py new file mode 100644 index 000000000..320a92460 --- /dev/null +++ b/tests/test_can_query_base_parameters.py @@ -0,0 +1,17 @@ +from substrateinterface import SubstrateInterface + + +class TestCanGetMetadata(): + def test_create_connection_and_get_metadata(self, connection_by_url: SubstrateInterface): + metadata = connection_by_url.get_block_metadata() + assert isinstance(connection_by_url, SubstrateInterface) + +class TestCanGetFee: + def test_create_connection_and_get_fee(self, connection_by_url: SubstrateInterface): + storage = connection_by_url.rpc_request('payment_queryInfo', ['0x41028400fdc41550fb5186d71cae699c31731b3e1baa10680c7bd6b3831a6d222cf4d16800080bfe8bc67f44b498239887dc5679523cfcb1d20fd9ec9d6bae0a385cca118d2cb7ef9f4674d52a810feb32932d7c6fe3e05ce9e06cd72cf499c8692206410ab5038800040000340a806419d5e278172e45cb0e50da1b031795366c99ddfe0a680bd53b142c630700e40b5402']) + assert isinstance(connection_by_url, SubstrateInterface) + +class TestCanGetIndex: + def test_create_connection_and_get_next_index(self, connection_by_url: SubstrateInterface): + storage = connection_by_url.rpc_request('account_nextIndex', ['5CJqRchpnKQ6zzB4zmkz3QSzFgFmLFJ741RxW1CunStvEwKd']) + assert isinstance(connection_by_url, SubstrateInterface) diff --git a/tests/test_check_new_assets.py b/tests/test_check_new_assets.py new file mode 100644 index 000000000..117453be8 --- /dev/null +++ b/tests/test_check_new_assets.py @@ -0,0 +1,34 @@ +import delayed_assert +from scripts.utils.chain_model import Chain + + +class TestAssets: + # workaround to differences between asset names at runtime and in our configuration + asset_mapping = { + 'AUSD': 'KUSD', + 'RMRK (old)': 'RMRK' + } + # assets that has no working cases on network + exclusions = { + 'Bifrost Kusama': {'DOT': ''}, + 'Kintsugi': {'INTR': '', 'IBTC': '', 'DOT': ''}, + 'Equilibrium': {'TOKEN': ''} + } + + def test_has_new_assets(self, chain_model: Chain): + + chain_assets = {asset['symbol'].upper( + ): '' for asset in chain_model.assets} + chain_assets.update(self.asset_mapping) + + if chain_model.name in self.exclusions: + chain_assets.update( + {ex_asset: '' for ex_asset in self.exclusions[chain_model.name]}) + symbols = chain_model.substrate.token_symbol if isinstance(chain_model.substrate.token_symbol, list) else [ + chain_model.properties.symbol] + + for symbol in symbols: + delayed_assert.expect(symbol.upper() in chain_assets.keys() or symbol.upper() in chain_assets.values(), + "new token to add: " + symbol) + + delayed_assert.assert_expectations() diff --git a/tests/test_eth_nodes_availability.py b/tests/test_eth_nodes_availability.py new file mode 100644 index 000000000..82c8f1a01 --- /dev/null +++ b/tests/test_eth_nodes_availability.py @@ -0,0 +1,45 @@ +import pytest +import time +from web3 import Web3 + +from tests.data.setting_data import collect_rpc_nodes_for_chains, get_ethereum_chain + +task_ids = [ + f'Test for {task["name"]}, url: {task["url"]}' + for task in collect_rpc_nodes_for_chains(get_ethereum_chain()) +] + +@pytest.mark.parametrize("data", collect_rpc_nodes_for_chains(get_ethereum_chain()), ids=task_ids) +class TestETHNodesAvailability: + def test_rpc_node_work_fast(self, data): + + w3 = Web3(Web3.HTTPProvider(data['url'])) + # Check if connected to Ethereum RPC node + assert w3.is_connected(), "Failed to connect to Ethereum RPC node" + + # Measure time taken to retrieve current block + start_time = time.time() + block = w3.eth.get_block('latest') + end_time = time.time() + + # Check if request took more than 3 seconds + elapsed_time = end_time - start_time + assert elapsed_time <= 3, f"Request took {elapsed_time} seconds, which is more than 3 seconds" + + def test_rpc_node_is_synced(self, data): + + wss_w3 = Web3(Web3.WebsocketProvider('wss://mainnet.infura.io/ws/v3/32a2be59297444c9bcb2b61bb700c6fe')) + # Check if connected to wss node + assert wss_w3.is_connected(), "Failed to connect to Ethereum wss node" + + w3_rpc = Web3(Web3.HTTPProvider(data['url'])) + # Check if connected to RPC node + assert w3_rpc.is_connected(), "Failed to connect to Ethereum RPC node" + + # Get the latest block number from nodes + rpc_block_number = w3_rpc.eth.block_number + wss_block_number = wss_w3.eth.block_number + + # Compare block numbers and assert the difference is not greater than 3 + assert abs(wss_block_number - rpc_block_number) <= 3, f"Difference in block numbers is greater than 3:\ + wss_block_number={wss_block_number}, rpc_block_number={rpc_block_number}" diff --git a/tests/test_network_availability.py b/tests/test_network_availability.py deleted file mode 100644 index 26aa4018e..000000000 --- a/tests/test_network_availability.py +++ /dev/null @@ -1,24 +0,0 @@ -import os -import pytest -from scripts.create_type_file import create_connection_by_url -from tests.test_network_parameters import get_network_list -from tests.utils.chain_model import Chain -from substrateinterface import SubstrateInterface - - -def collect_nodes_from_dev(): - networks = [] - for network in get_network_list(network_file_path): - current_network = Chain(network) - for node in current_network.nodes: - networks.append(node.get("url")) - - return networks - -network_file_path=os.environ['JSON_PATH'] - -@pytest.mark.parametrize("url", collect_nodes_from_dev()) -def test_can_create_connection(url): - - connectin = create_connection_by_url(url) - assert isinstance(connectin, SubstrateInterface) diff --git a/tests/test_network_parameters.py b/tests/test_network_parameters.py index 14df1c1ba..3f84069f8 100644 --- a/tests/test_network_parameters.py +++ b/tests/test_network_parameters.py @@ -1,43 +1,13 @@ -import os -import pytest -from tests.utils.getting_data import get_network_list -from tests.utils.chain_model import Chain +from scripts.utils.chain_model import Chain +class TestNetworkPrefix: + def test_address_prefix(self, chain_model: Chain): + assert chain_model.properties.ss58Format == chain_model.addressPrefix -def collect_data_from_dev(): - chains = [] - for network in get_network_list(network_file_path): - current_network = Chain(network) - chains.append(current_network) +class TestChainId: + def test_chainId(self, chain_model: Chain): + assert chain_model.properties.chainId == '0x'+chain_model.chainId - return chains - -network_file_path=os.environ['JSON_PATH'] - -chains = ( - collect_data_from_dev() -) - -task_ids = [ - f'Test for {task.name}' - for task in chains -] - - -@pytest.mark.parametrize("chain", chains, ids=task_ids) -class TestChainJson: - - def test_address_prefix(self, chain: Chain): - chain.create_connection() - chain.init_properties() - assert chain.properties.ss58Format == chain.addressPrefix - - def test_chainId(self, chain: Chain): - chain.create_connection() - chain.init_properties() - assert chain.properties.chainId == '0x'+chain.chainId - - def test_precision(self, chain: Chain): - chain.create_connection() - chain.init_properties() - assert chain.properties.precision == chain.assets[0].get('precision') +class TestPrecision: + def test_precision(self, chain_model: Chain): + assert chain_model.properties.precision == chain_model.assets[0].get('precision') diff --git a/tests/test_network_parameters_by_nodes.py b/tests/test_network_parameters_by_nodes.py new file mode 100644 index 000000000..837b0388e --- /dev/null +++ b/tests/test_network_parameters_by_nodes.py @@ -0,0 +1,47 @@ +import pytest +import allure +from substrateinterface import SubstrateInterface +from scripts.utils.chain_model import Chain +from scripts.utils.metadata_interaction import get_properties +from tests.data.setting_data import get_substrate_chains + +@allure.title("Test Chains") +@pytest.mark.core +class TestChains: + chains = get_substrate_chains() + + @staticmethod + def find_chain_by_id(chain_id) -> Chain | None: + for chain in TestChains.chains: + if chain.chainId == chain_id[2:]: + return chain + raise Exception(f'There is no chain with that chainId {chain_id}') + + @staticmethod + def assert_url_in_chain_nodes(connection_by_url: SubstrateInterface, chain: Chain): + assert connection_by_url.url in [node['url'] for node in chain.nodes], 'Check that this node is for proper chain' + + + @allure.title("Test Address Prefix") + def test_address_prefix(self, connection_by_url: SubstrateInterface): + properies = get_properties(connection_by_url) + chain = self.find_chain_by_id(properies.chainId) + + self.assert_url_in_chain_nodes(connection_by_url, chain) + assert properies.ss58Format == chain.addressPrefix + + @allure.title("Test Chain ID") + def test_chainId(self, connection_by_url: SubstrateInterface): + properies = get_properties(connection_by_url) + chain = self.find_chain_by_id(connection_by_url.get_block_hash(0)) + + self.assert_url_in_chain_nodes(connection_by_url, chain) + assert properies.chainId == '0x'+chain.chainId + + @allure.title("Test Precision") + def test_precision(self, connection_by_url: SubstrateInterface): + properies = get_properties(connection_by_url) + chain = self.find_chain_by_id(connection_by_url.get_block_hash(0)) + + self.assert_url_in_chain_nodes(connection_by_url, chain) + assert properies.precision == chain.assets[0].get('precision') diff --git a/tests/test_nodes_availability.py b/tests/test_nodes_availability.py new file mode 100644 index 000000000..1988671aa --- /dev/null +++ b/tests/test_nodes_availability.py @@ -0,0 +1,5 @@ +from substrateinterface import SubstrateInterface + + +def test_can_create_connection(connection_by_url: SubstrateInterface): + assert isinstance(connection_by_url, SubstrateInterface) diff --git a/tests/test_type_creation.py b/tests/test_type_creation.py index 75833d5cd..fb010a4b2 100644 --- a/tests/test_type_creation.py +++ b/tests/test_type_creation.py @@ -1,31 +1,38 @@ +import json import pytest -from scripts.create_type_file import get_properties, create_connection_by_url, get_metadata_param +from scripts.utils.substrate_interface import create_connection_by_url +from scripts.create_type_file import get_metadata_param, get_properties test_data = [ - ["wss://rpc.polkadot.io", "Polkadot"], - ["wss://kusama-rpc.polkadot.io", "Kusama"], - ["wss://westend-rpc.polkadot.io", "Westend"], - ["wss://statemine.api.onfinality.io/public-ws", "Statemine"], - ["wss://karura-rpc-0.aca-api.network", "Karura"], - ["wss://rpc.shiden.astar.network", "Shiden"], - ["wss://bifrost-rpc.liebi.com/ws", "Bifrost"], - ["wss://heiko-rpc.parallel.fi", "Parallel Heiko"], - ["wss://basilisk.api.onfinality.io/public-ws", "Basilisk"], - ["wss://fullnode.altair.centrifuge.io", "Altair"], - ["wss://spiritnet.kilt.io/", "KILT Spiritnet"], - ["wss://kilt-peregrine-k8s.kilt.io", "KILT Peregrine"], - ["wss://falafel.calamari.systems/", "Calamari Parachain"], - ["wss://quartz.unique.network", "QUARTZ by UNIQUE"], - ["wss://pioneer.api.onfinality.io/public-ws", "Pioneer Network"] + ["wss://rpc.polkadot.io", "Polkadot", "chains/v2/types/polkadot.json"], + ["wss://kusama-rpc.polkadot.io", "Kusama", "chains/v2/types/kusama.json"], + ["wss://westend-rpc.polkadot.io", "Westend", "chains/v2/types/westend.json"], + ["wss://statemine.api.onfinality.io/public-ws", "Statemine", "chains/v2/types/statemine.json"], + ["wss://karura-rpc-0.aca-api.network", "Karura", "chains/v2/types/karura.json"], + ["wss://rpc.shiden.astar.network", "Shiden", "chains/v2/types/shiden.json"], + ["wss://bifrost-rpc.liebi.com/ws", "Bifrost", "chains/v2/types/bifrost.json"], + ["wss://heiko-rpc.parallel.fi", "Parallel Heiko", "chains/v2/types/parallel_heiko.json"], + ["wss://basilisk.api.onfinality.io/public-ws", "Basilisk", "chains/v2/types/basilisk.json"], + ["wss://fullnode.altair.centrifuge.io", "Altair", "chains/v2/types/altair.json"], + ["wss://spiritnet.kilt.io/", "KILT Spiritnet", "chains/v2/types/kilt_spiritnet.json"], + ["wss://peregrine.kilt.io/parachain-public-ws/", "KILT Peregrine", "chains/v2/types/kilt_peregrine.json"], + ["wss://falafel.calamari.systems/", "Calamari Parachain", "chains/v2/types/calamari.json"], + ["wss://quartz.unique.network", "QUARTZ by UNIQUE", "chains/v2/types/quartz.json"], + ["wss://pioneer.api.onfinality.io/public-ws", "Pioneer Network", "chains/v2/types/bit.country_pioneer.json"], + ["wss://asia-ws.unique.network/", "UNIQUE", "chains/v2/types/unique.json"] ] -@pytest.mark.parametrize("url, expected", test_data) -def test_properties(url, expected): +@pytest.mark.parametrize("url, expected, types_path", test_data) +def test_properties(url, expected, types_path): network_property = get_properties(create_connection_by_url(url)) assert network_property.name == expected -@pytest.mark.parametrize("url, expected", test_data) -def test_type_building(url, expected): +@pytest.mark.parametrize("url, name, types_path", test_data) +def test_type_building(url, name, types_path): network_types = get_metadata_param(create_connection_by_url(url)) - assert isinstance(network_types.runtime_id, int) \ No newline at end of file + with open(types_path, "r") as file: + property = json.loads(file.read()) + for key, value in network_types.types.items(): + assert value == property.get('types').get(key) + assert isinstance(network_types.runtime_id, int) diff --git a/tests/test_xcm_data.py b/tests/test_xcm_data.py new file mode 100644 index 000000000..e9d76b91b --- /dev/null +++ b/tests/test_xcm_data.py @@ -0,0 +1,30 @@ +import pytest +import json +import deepdiff + +from tests.data.setting_data import get_substrate_chains +from scripts.utils.chain_model import Chain + +xcm_data_file_path = './tests/data/xcm_data.json' + +def was_network_data_changed(data_from_network, saved_data): + diff = deepdiff.DeepDiff(data_from_network, saved_data) + return diff.tree + +task_ids = [ + f'Check XCM data for {task.name}' + for task in get_substrate_chains() +] + +@pytest.mark.parametrize('chain', get_substrate_chains(), ids=task_ids) +class TestCompareXCMData: + + def test_xcm_parameters(self, chain: Chain): + connection = chain.create_connection() + chain.init_properties() + data = connection.get_constant('System', 'BlockWeights').serialize() + + with open(xcm_data_file_path) as fp: + json_data = json.load(fp) + changed_data = was_network_data_changed(data, json_data[chain.chainId]['BlockWeights']) + assert not bool(changed_data) diff --git a/tests/utils/getting_data.py b/tests/utils/getting_data.py deleted file mode 100644 index 8a968c1ef..000000000 --- a/tests/utils/getting_data.py +++ /dev/null @@ -1,13 +0,0 @@ -import os -import json - -def get_network_list(path): - - dn = os.path.abspath('./') - try: - with open(dn + path) as fin: - chains_data = json.load(fin) - except: - raise - - return chains_data \ No newline at end of file diff --git a/xcm/update_to_prod.py b/xcm/update_to_prod.py new file mode 100644 index 000000000..dffbe1dde --- /dev/null +++ b/xcm/update_to_prod.py @@ -0,0 +1,177 @@ +""" +This script compares the dev and prod transfers.json files, finds the difference and asks which changes to apply, then updates the prod file. +""" + +import json +import os + +def ask_to_update(): + update = input("Would you like to update that data? (y/n)") + if update.lower() == 'y': + return True + return False + +def remove_none_keys(data): + if isinstance(data, dict): + # Iterate over the dictionary keys + for key in list(data.keys()): + # Recursively call the function on the corresponding value + data[key] = remove_none_keys(data[key]) + + # Check if the value is None after recursing, remove it if so + if data[key] is None: + del data[key] + + elif isinstance(data, list): + # Iterate over the list elements + data[:] = [remove_none_keys(elem) for elem in data] + + # Remove any empty dictionaries in the list + data[:] = [elem for elem in data if isinstance(elem, dict) and len(elem) > 0] + + return data + +def update_networks(dev_chains, prod_chains, meta_dict): + for dev_chain_id, dev_chain in dev_chains.items(): + if dev_chain_id not in prod_chains: + print(f"Added new chain - {meta_dict[dev_chain_id]['name']}") + if ask_to_update(): + prod_chains[dev_chain_id] = dev_chain + + return prod_chains + +def update_network_base_weight(dev_file, prod_file, meta_dict): + for dev_chain_id, dev_weight in dev_file['networkBaseWeight'].items(): + if dev_chain_id not in prod_file['networkBaseWeight']: + print(f"Added new base weight in chain: {meta_dict[dev_chain_id]['name']}") + if ask_to_update(): + prod_file['networkBaseWeight'][dev_chain_id] = dev_weight + + return prod_file['networkBaseWeight'] + + +def update_reserves(dev_file, prod_file): + for dev_asset_location, dev_asset in dev_file['assetsLocation'].items(): + if dev_asset_location not in prod_file['assetsLocation']: + print(f"Added new asset: {dev_asset_location}") + if ask_to_update(): + prod_file['assetsLocation'][dev_asset_location] = dev_asset + + for prod_asset_location, prod_asset in prod_file['assetsLocation'].items(): + if prod_asset_location not in dev_file['assetsLocation']: + print(f"Asset was removed: {prod_asset_location}") + if ask_to_update(): + prod_file['assetsLocation'][prod_asset_location] = None + + return remove_none_keys(prod_file['assetsLocation']) + + +def update_assets(dev_chains, prod_chains, meta_dict): + for prod_chain_id, _ in prod_chains.items(): + for dev_asset_location, dev_asset in dev_chains[prod_chain_id]['assets'].items(): + if dev_asset_location not in prod_chains[prod_chain_id]['assets']: + print(f"Added new asset {dev_asset_location} in chain: {meta_dict[prod_chain_id]['name']}") + if ask_to_update(): + prod_chains[prod_chain_id]['assets'][dev_asset_location] = dev_asset + + return prod_chains + + +def update_destinations(dev_chains, prod_chains, meta_dict): + for prod_chain_id, prod_chain in prod_chains.items(): + for prod_asset_location, prod_asset in prod_chain['assets'].items(): + + if dev_chains[prod_chain_id]['assets'].get(prod_asset_location) is None: + print(f"Destination was removed in {meta_dict[prod_chain_id]['name']} \ + \nfor asset: {prod_asset_location} \ + \nto network: {meta_dict[dev_destination_id]['name']} ") + if ask_to_update(): + prod_chains[prod_chain_id]['assets'][prod_asset_location] = None + else: + for dev_destination_id, dev_destination \ + in dev_chains[prod_chain_id]['assets'][prod_asset_location]['xcmTransfers'].items(): + + if dev_destination_id not in prod_asset['xcmTransfers']: + print(f"Added new destination in {meta_dict[prod_chain_id]['name']} \ + \nfor asset: {prod_asset_location} \ + \nto network: {meta_dict[dev_destination_id]['name']} ") + if ask_to_update(): + prod_chains[prod_chain_id]['assets'][prod_asset_location]['xcmTransfers'][dev_destination_id] = dev_destination + + + return remove_none_keys(prod_chains) + + +def convert_chains_to_dict(chains_obj): + chains_dict = {chain['chainId']: chain for chain in chains_obj} + for chain_id, chain in chains_dict.items(): + assets_dict = {} + for asset in chain['assets']: + destinations_dict = {destination['destination']['chainId']: destination for destination in asset['xcmTransfers']} + assets_dict[asset['assetLocation']] = asset + assets_dict[asset['assetLocation']]['xcmTransfers'] = destinations_dict + chains_dict[chain_id]['assets'] = assets_dict + + return chains_dict + +def convert_chain_dict_to_array_back(chains_dict): + temp_chains = [] + for _, chain in chains_dict.items(): + temp_assets = [] + for _, asset in chain['assets'].items(): + temp_destinations = [] + for _, destination in asset['xcmTransfers'].items(): + temp_destinations.append(destination) + asset['xcmTransfers'] = temp_destinations + temp_assets.append(asset) + chain['assets'] = temp_assets + temp_chains.append(chain) + + return temp_chains + + + +def promote_updates_to_prod(dev_file, prod_file, meta_data): + + # meta_dict is used to get a human-readable network name + meta_dict = {chain['chainId']: chain for chain in meta_data} + + dev_chains_dict = convert_chains_to_dict(dev_file['chains']) + prod_chains_data = convert_chains_to_dict(prod_file['chains']) + + updated_prod = update_networks(dev_chains_dict, prod_chains_data, meta_dict) + updated_prod = update_assets(dev_chains_dict, updated_prod, meta_dict) + updated_prod = update_destinations(dev_chains_dict, updated_prod, meta_dict) + + updated_chains = convert_chain_dict_to_array_back(updated_prod) + + updated_base_weight = update_network_base_weight(dev_file, prod_file, meta_dict) + + updated_reserves = update_reserves(dev_file, prod_file) + + prod_file['networkBaseWeight'] = updated_base_weight + prod_file['assetsLocation'] = updated_reserves + prod_file['chains'] = updated_chains + + return prod_file + + +if __name__ == "__main__": + xcm_dev_file_path = os.getenv('DEV_XCM_JSON_PATH') + xcm_file_path = os.getenv('XCM_JSON_PATH') + chains_dev_path = os.getenv('DEV_CHAINS_JSON_PATH') + print(f"The following files are used:\n{xcm_dev_file_path}\n{xcm_file_path}\n{chains_dev_path}") + # Read data from files + with open(xcm_dev_file_path) as f: + data1 = json.load(f) + with open(xcm_file_path) as f: + data2 = json.load(f) + with open(chains_dev_path) as f: + meta_data = json.load(f) + + + updated_obj = promote_updates_to_prod(dev_file=data1, prod_file=data2, meta_data=meta_data) + + with open(xcm_file_path, 'w') as f: + json.dump(updated_obj, f, indent=2) + print(f"Data updated in {xcm_file_path}") diff --git a/xcm/v2/transfers.json b/xcm/v2/transfers.json index bb9aae48d..b2b0143e8 100644 --- a/xcm/v2/transfers.json +++ b/xcm/v2/transfers.json @@ -5,11 +5,25 @@ "multiLocation": { "parachainId": 2000, "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" } }, "KSM": { "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "multiLocation": {} + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } }, "KSM-Statemine": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", @@ -24,6 +38,13 @@ "multiLocation": { "parachainId": 2023, "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensReserve" } }, "BNC": { @@ -35,7 +56,7 @@ "reserveFee": { "mode": { "type": "proportional", - "value": "6400000000000" + "value": "8082400000000" }, "instructions": "xtokensReserve" } @@ -45,17 +66,38 @@ "multiLocation": { "parachainId": 2000, "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" } }, "DOT": { "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "multiLocation": {} + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensReserve" + } }, "GLMR": { "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", "multiLocation": { "parachainId": 2004, "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensReserve" } }, "RMRK": { @@ -71,6 +113,125 @@ "multiLocation": { "parachainId": 2092, "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "269413333327" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "23175508123000" + }, + "instructions": "xtokensReserve" + } + }, + "USDT": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" } } }, @@ -110,7 +271,20 @@ "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", - "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000" + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "150000000" }, "chains": [ { @@ -130,75 +304,49 @@ "fee": { "mode": { "type": "proportional", - "value": "11655000000000" + "value": "10103000000000" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 2, - "assetLocation": "KSM", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "assetId": 0, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, "fee": { "mode": { - "type": "standard" + "type": "proportional", + "value": "10103000000000" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 0, - "assetLocation": "MOVR", - "assetLocationPath": { - "type": "relative" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", - "assetId": 8, + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, "fee": { "mode": { "type": "proportional", - "value": "309393033442258200" + "value": "123456790123456" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 5, - "assetLocation": "BNC", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", - "assetId": 4, + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, "fee": { "mode": { "type": "proportional", - "value": "27972000000000" + "value": "8000000000000" }, "instructions": "xtokensDest" } @@ -206,97 +354,64 @@ "type": "xtokens" } ] - } - ] - }, - { - "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "assets": [ + }, { "assetId": 0, - "assetLocation": "KSM", + "assetLocation": "MOVR", "assetLocationPath": { "type": "relative" }, "xcmTransfers": [ { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 2, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, "fee": { "mode": { "type": "proportional", - "value": "130000000000" + "value": "269750100000000000" }, - "instructions": "xcmPalletDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet" + "type": "xtokens" }, { "destination": { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "assetId": 0, + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, "fee": { "mode": { "type": "proportional", - "value": "3959149500" + "value": "3159557661927330300" }, - "instructions": "xcmPalletTeleportDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet-teleport" - } - ] - } - ] - }, - { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", - "assets": [ - { - "assetId": 4, - "assetLocation": "BNC", - "assetLocationPath": { - "type": "concrete", - "path": { - "parents": 1, - "parachainId": 2001, - "generalKey": "0x0001" - } - }, - "xcmTransfers": [ + "type": "xtokens" + }, { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 5, + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, "fee": { "mode": { "type": "proportional", - "value": "35230000000000" + "value": "333333333333000000" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 0, - "assetLocation": "KAR", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 4, + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, "fee": { "mode": { "type": "proportional", - "value": "12350000000000" + "value": "101030000000000000" }, "instructions": "xtokensDest" } @@ -306,48 +421,34 @@ ] }, { - "assetId": 7, - "assetLocation": "KINT", + "assetId": 5, + "assetLocation": "BNC", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", - "assetId": 0, + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, "fee": { "mode": { "type": "proportional", - "value": "310800000000" + "value": "26079494248347" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - } - ] - }, - { - "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", - "assets": [ - { - "assetId": 3, - "assetLocation": "ACA", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "11655000000000" + "value": "8082400000000" }, "instructions": "xtokensDest" } @@ -357,90 +458,136 @@ ] }, { - "assetId": 1, - "assetLocation": "DOT", + "assetId": 11, + "assetLocation": "HKO", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "117354363236" + "value": "485908649173955" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - } - ] - }, - { - "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "assets": [ + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, { - "assetId": 0, - "assetLocation": "DOT", + "assetId": 3, + "assetLocation": "KINT", "assetLocationPath": { - "type": "relative" + "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", - "assetId": 1, + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "11285231116" + "value": "269413333327" }, - "instructions": "xcmPalletDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet" + "type": "xtokens" }, { "destination": { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "assetId": 0, + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, "fee": { "mode": { "type": "proportional", - "value": "11877448000" + "value": "269413333368" }, - "instructions": "xcmPalletTeleportDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet-teleport" + "type": "xtokens" } ] - } - ] - }, - { - "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", - "assets": [ + }, { - "assetId": 0, - "assetLocation": "ACA", + "assetId": 17, + "assetLocation": "XRT", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", - "assetId": 3, + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, "fee": { "mode": { "type": "proportional", - "value": "31204285721418" + "value": "1099115198" }, "instructions": "xtokensDest" } @@ -452,72 +599,144 @@ ] }, { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", "assets": [ { - "assetId": 0, - "assetLocation": "KSM-Statemine", + "assetId": 4, + "assetLocation": "BNC", "assetLocationPath": { - "type": "absolute" + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } }, "xcmTransfers": [ { "destination": { - "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", "assetId": 0, "fee": { "mode": { - "type": "standard" + "type": "proportional", + "value": "8082400000000" }, - "instructions": "xcmPalletTeleportDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet-teleport" + "type": "xtokens" } ] }, { - "assetId": 1, - "assetLocation": "RMRK", + "assetId": 0, + "assetLocation": "KAR", "assetLocationPath": { - "type": "relative" + "type": "absolute" }, "xcmTransfers": [ { "destination": { "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 1, + "assetId": 4, "fee": { "mode": { "type": "proportional", - "value": "13000000000" + "value": "49564722606073" }, - "instructions": "xcmPalletDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet" + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" } ] - } - ] - }, - { - "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", - "assets": [ + }, { - "assetId": 8, - "assetLocation": "MOVR", + "assetId": 7, + "assetLocation": "KINT", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", "assetId": 0, "fee": { "mode": { - "type": "standard" + "type": "proportional", + "value": "269413333327" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" }, "instructions": "xtokensDest" } @@ -525,27 +744,64 @@ "type": "xtokens" } ] - } - ] - }, - { - "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", - "assets": [ + }, { - "assetId": 0, - "assetLocation": "KINT", + "assetId": 15, + "assetLocation": "HKO", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", - "assetId": 7, + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, "fee": { "mode": { "type": "proportional", - "value": "965646171792" + "value": "4800000000000" }, "instructions": "xtokensDest" } @@ -553,32 +809,2590 @@ "type": "xtokens" } ] - } - ] - }, - { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "assets": [ + }, { - "assetId": 0, - "assetLocation": "DOT-Statemint", + "assetId": 14, + "assetLocation": "MOVR", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "assetId": 0, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, "fee": { "mode": { "type": "proportional", - "value": "117354363236" + "value": "269750100000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "26079494248347" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333368" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" }, "instructions": "xcmPalletTeleportDest" } }, - "type": "xcmpallet-teleport" + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "269750100000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "759878419452887" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "23175508123000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "45566893300397" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1099115198" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" } ] } diff --git a/xcm/v2/transfers_dev.json b/xcm/v2/transfers_dev.json index 1b85b7029..e26da9162 100644 --- a/xcm/v2/transfers_dev.json +++ b/xcm/v2/transfers_dev.json @@ -5,11 +5,25 @@ "multiLocation": { "parachainId": 2000, "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" } }, "KSM": { "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "multiLocation": {} + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } }, "KSM-Statemine": { "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", @@ -24,6 +38,13 @@ "multiLocation": { "parachainId": 2023, "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensReserve" } }, "BNC": { @@ -35,31 +56,59 @@ "reserveFee": { "mode": { "type": "proportional", - "value": "6400000000000" + "value": "9269600000000" }, "instructions": "xtokensReserve" } }, "UNIT": { "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", - "multiLocation": {} + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } }, "ACA": { "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", "multiLocation": { "parachainId": 2000, "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" } }, "DOT": { "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "multiLocation": {} + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensReserve" + } }, "GLMR": { "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", "multiLocation": { "parachainId": 2004, "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensReserve" } }, "RMRK": { @@ -75,6 +124,13 @@ "multiLocation": { "parachainId": 2092, "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "308986666659" + }, + "instructions": "xtokensReserve" } }, "HKO": { @@ -82,6 +138,140 @@ "multiLocation": { "parachainId": 2085, "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "14577259475218650" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "188323917137476400" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006, + "palletInstance": 31 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10543518372081" + }, + "instructions": "xtokensReserve" + } + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {} + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "23175508123000" + }, + "instructions": "xtokensReserve" + } + }, + "USDT": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" } } }, @@ -116,7 +306,7 @@ "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", - "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527": "100000000", + "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527": "200000000", "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443": "1000000000", "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", @@ -125,7 +315,20 @@ "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", - "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000" + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": "1000000000", + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": "1000000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "150000000" }, "chains": [ { @@ -145,75 +348,49 @@ "fee": { "mode": { "type": "proportional", - "value": "11655000000000" + "value": "10103000000000" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 2, - "assetLocation": "KSM", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "assetId": 0, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, "fee": { "mode": { - "type": "standard" + "type": "proportional", + "value": "11587000000000" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 0, - "assetLocation": "MOVR", - "assetLocationPath": { - "type": "relative" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", - "assetId": 8, + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, "fee": { "mode": { "type": "proportional", - "value": "309393033442258200" + "value": "123456790123456" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 5, - "assetLocation": "BNC", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", - "assetId": 4, + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, "fee": { "mode": { "type": "proportional", - "value": "27972000000000" + "value": "8000000000000" }, "instructions": "xtokensDest" } @@ -223,126 +400,118 @@ ] }, { - "assetId": 1, - "assetLocation": "RMRK", + "assetId": 2, + "assetLocation": "KSM", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "assetId": 1, + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "3959149500" + "value": "35047875048" }, - "instructions": "xtokensDest", - "asset": { - "originAssetId": 2, - "destAssetId": 0, - "location": "KSM-Statemine", - "locationPath": { - "type": "absolute" - } - } + "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - }, - { - "assetId": 11, - "assetLocation": "HKO", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", - "assetId": 0, + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, "fee": { "mode": { "type": "proportional", - "value": "6993000000000" + "value": "71450261778" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - } - ] - }, - { - "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "assets": [ - { - "assetId": 0, - "assetLocation": "KSM", - "assetLocationPath": { - "type": "relative" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", "assetId": 2, "fee": { "mode": { "type": "proportional", - "value": "130000000000" + "value": "231740000000" }, - "instructions": "xcmPalletDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet" + "type": "xtokens" }, { "destination": { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "assetId": 0, + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, "fee": { "mode": { "type": "proportional", - "value": "3959149500" + "value": "811622433244" }, - "instructions": "xcmPalletTeleportDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet-teleport" - } - ] - } - ] - }, - { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", - "assets": [ - { - "assetId": 4, - "assetLocation": "BNC", - "assetLocationPath": { - "type": "concrete", - "path": { - "parents": 1, - "parachainId": 2001, - "generalKey": "0x0001" - } - }, - "xcmTransfers": [ + "type": "xtokens" + }, { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 5, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, "fee": { "mode": { "type": "proportional", - "value": "35230000000000" + "value": "1158776" }, "instructions": "xtokensDest" } @@ -353,19 +522,19 @@ }, { "assetId": 0, - "assetLocation": "KAR", + "assetLocation": "MOVR", "assetLocationPath": { - "type": "absolute" + "type": "relative" }, "xcmTransfers": [ { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 4, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, "fee": { "mode": { "type": "proportional", - "value": "12350000000000" + "value": "309372900000000000" }, "instructions": "xtokensDest" } @@ -375,11 +544,39 @@ { "destination": { "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", - "assetId": 5, + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, "fee": { "mode": { "type": "proportional", - "value": "11655000000000" + "value": "101030000000000000" }, "instructions": "xtokensDest" } @@ -389,20 +586,34 @@ ] }, { - "assetId": 7, - "assetLocation": "KINT", + "assetId": 5, + "assetLocation": "BNC", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "26079494248347" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "310800000000" + "value": "9269600000000" }, "instructions": "xtokensDest" } @@ -412,47 +623,93 @@ ] }, { - "assetId": 15, - "assetLocation": "HKO", + "assetId": 1, + "assetLocation": "RMRK", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", - "assetId": 0, + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, "fee": { "mode": { "type": "proportional", - "value": "6993000000000" + "value": "3959149500" }, - "instructions": "xtokensDest" + "instructions": "xtokensDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } } }, "type": "xtokens" } ] - } - ] - }, - { - "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", - "assets": [ + }, { - "assetId": 1, - "assetLocation": "UNIT", + "assetId": 11, + "assetLocation": "HKO", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", "assetId": 0, "fee": { "mode": { - "type": "standard" + "type": "proportional", + "value": "14577259475218650" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" }, "instructions": "xtokensDest" } @@ -460,55 +717,59 @@ "type": "xtokens" } ] - } - ] - }, - { - "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", - "assets": [ + }, { - "assetId": 0, - "assetLocation": "UNIT", + "assetId": 3, + "assetLocation": "KINT", "assetLocationPath": { - "type": "relative" + "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", - "assetId": 1, + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "130000000000" + "value": "308986666659" }, - "instructions": "xcmPalletDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet" + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333368" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" } ] - } - ] - }, - { - "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", - "assets": [ + }, { - "assetId": 3, - "assetLocation": "ACA", + "assetId": 7, + "assetLocation": "USDT", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", - "assetId": 0, + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, "fee": { "mode": { "type": "proportional", - "value": "11655000000000" + "value": "341500" }, "instructions": "xtokensDest" } @@ -518,20 +779,34 @@ ] }, { - "assetId": 1, - "assetLocation": "DOT", + "assetId": 17, + "assetLocation": "XRT", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "117354363236" + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1120000000" }, "instructions": "xtokensDest" } @@ -543,23 +818,23 @@ ] }, { - "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", "assets": [ { "assetId": 0, - "assetLocation": "DOT", + "assetLocation": "KSM", "assetLocationPath": { "type": "relative" }, "xcmTransfers": [ { "destination": { - "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", - "assetId": 1, + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, "fee": { "mode": { "type": "proportional", - "value": "11285231116" + "value": "511456628477" }, "instructions": "xcmPalletDest" } @@ -568,90 +843,110 @@ }, { "destination": { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "11877448000" + "value": "3959149500" }, "instructions": "xcmPalletTeleportDest" } }, "type": "xcmpallet-teleport" - } - ] - } - ] - }, - { - "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", - "assets": [ - { - "assetId": 0, - "assetLocation": "ACA", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", - "assetId": 3, + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, "fee": { "mode": { "type": "proportional", - "value": "31204285721418" + "value": "811622433244" }, - "instructions": "xtokensDest" + "instructions": "xcmPalletDest" } }, - "type": "xtokens" - } - ] - } - ] - }, - { - "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", - "assets": [ - { - "assetId": 0, - "assetLocation": "KSM-Statemine", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + "type": "xcmpallet" + }, { "destination": { - "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", - "assetId": 0, + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, "fee": { "mode": { - "type": "standard" + "type": "proportional", + "value": "71450261778" }, - "instructions": "xcmPalletTeleportDest" + "instructions": "xcmPalletDest" } }, - "type": "xcmpallet-teleport" - } - ] - }, - { - "assetId": 1, - "assetLocation": "RMRK", - "assetLocationPath": { - "type": "relative" - }, - "xcmTransfers": [ + "type": "xcmpallet" + }, { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "231740000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", "assetId": 1, "fee": { "mode": { "type": "proportional", - "value": "13000000000" + "value": "1158776" }, "instructions": "xcmPalletDest" } @@ -663,50 +958,42 @@ ] }, { - "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", "assets": [ { - "assetId": 8, - "assetLocation": "MOVR", + "assetId": 4, + "assetLocation": "BNC", "assetLocationPath": { - "type": "absolute" + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } }, "xcmTransfers": [ { "destination": { "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 0, + "assetId": 5, "fee": { "mode": { - "type": "standard" + "type": "proportional", + "value": "131352192005380" }, "instructions": "xtokensDest" } }, "type": "xtokens" - } - ] - } - ] - }, - { - "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", - "assets": [ - { - "assetId": 0, - "assetLocation": "KINT", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + }, { "destination": { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", - "assetId": 7, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "965646171792" + "value": "9269600000000" }, "instructions": "xtokensDest" } @@ -714,55 +1001,36 @@ "type": "xtokens" } ] - } - ] - }, - { - "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", - "assets": [ + }, { "assetId": 0, - "assetLocation": "DOT-Statemint", + "assetLocation": "KAR", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", - "assetId": 0, + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, "fee": { "mode": { "type": "proportional", - "value": "117354363236" + "value": "49564722606073" }, - "instructions": "xcmPalletTeleportDest" + "instructions": "xtokensDest" } }, - "type": "xcmpallet-teleport" - } - ] - } - ] - }, - { - "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", - "assets": [ - { - "assetId": 0, - "assetLocation": "HKO", - "assetLocationPath": { - "type": "absolute" - }, - "xcmTransfers": [ + "type": "xtokens" + }, { "destination": { - "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", "assetId": 5, "fee": { "mode": { "type": "proportional", - "value": "4800000000000" + "value": "123456790123456" }, "instructions": "xtokensDest" } @@ -771,12 +1039,26 @@ }, { "destination": { - "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", - "assetId": 11, + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, "fee": { "mode": { "type": "proportional", - "value": "892857142857142" + "value": "8000000000000" }, "instructions": "xtokensDest" } @@ -786,20 +1068,34 @@ ] }, { - "assetId": 5, - "assetLocation": "KAR", + "assetId": 7, + "assetLocation": "KINT", "assetLocationPath": { "type": "absolute" }, "xcmTransfers": [ { "destination": { - "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", "assetId": 0, "fee": { "mode": { "type": "proportional", - "value": "11655000000000" + "value": "308986666659" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" }, "instructions": "xtokensDest" } @@ -807,14 +1103,9 @@ "type": "xtokens" } ] - } - ] - }, - { - "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", - "assets": [ + }, { - "assetId": 5, + "assetId": 15, "assetLocation": "HKO", "assetLocationPath": { "type": "absolute" @@ -827,7 +1118,3974 @@ "fee": { "mode": { "type": "proportional", - "value": "6993000000000" + "value": "14577259475218650" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "231740000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "309372900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assets": [ + { + "assetId": 1, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assets": [ + { + "assetId": 0, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "523779593547" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "188323917137476400" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "77639751552" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11250" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "1009690" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8117152" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "26079494248347" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "20000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "231740000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "133333333333" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333368" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "231740000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "309372900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "14577259475218650" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assets": [ + { + "assetId": 7, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "309372900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "9269600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "759878419452887" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27075590089" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "89615" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "231740000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "231740000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "23175508123000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "USDT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND-Westmint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10543518372081" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "45883246330224" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1120000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "275025738935" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "115870000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "231740000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "897000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "102161742471" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "11587000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "20306692567" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" }, "instructions": "xtokensDest" } @@ -839,4 +5097,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/xcm/v3/transfers.json b/xcm/v3/transfers.json new file mode 100644 index 000000000..74c43adec --- /dev/null +++ b/xcm/v3/transfers.json @@ -0,0 +1,3185 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8012800000000" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "269413333327" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "23607895631" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "78138" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "23175508123000" + }, + "instructions": "xtokensReserve" + } + }, + "USDT": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000" + }, + "chains": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "267427200000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "26079494248347" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8012800000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333368" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8012800000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "267427200000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "77639751552" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "9725" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "1009690" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "26079494248347" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "267427200000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "759878419452887" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + } + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v3/transfers_dev.json b/xcm/v3/transfers_dev.json new file mode 100644 index 000000000..e255b7903 --- /dev/null +++ b/xcm/v3/transfers_dev.json @@ -0,0 +1,5453 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8012800000000" + }, + "instructions": "xtokensReserve" + } + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "269413333327" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "23607895631" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "78138" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10310128670406" + }, + "instructions": "xtokensReserve" + } + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {} + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "23175508123000" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527": "200000000", + "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443": "1000000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": "1000000000", + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": "1000000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000" + }, + "chains": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "267427200000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "26079494248347" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8012800000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xtokensDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333327" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333368" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3730637072" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8012800000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333327" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "267427200000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assets": [ + { + "assetId": 1, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assets": [ + { + "assetId": 0, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "523779593547" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17705921723" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "23607895631" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "78138" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17705921723" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "23607895631" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "78138" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17705921723" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "77639751552" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "9725" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "1009690" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "18379325" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "26079494248347" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "20000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "133333333333" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "269413333368" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "800000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "1010300" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "8202500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "267427200000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assets": [ + { + "assetId": 7, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "267427200000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8012800000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "10016000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17705921723" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "759878419452887" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "23607895631" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "78138" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "101030000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "23175508123000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "341500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND-Westmint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10310128670406" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "116076816570060" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17705921723" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17705921723" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "78138" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10103" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3730637072" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30051417676" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "912210865590" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100160000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "71450261778" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "202060000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "879500000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "105358535095" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2889592242" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10103000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17705921723" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v4/transfers.json b/xcm/v4/transfers.json new file mode 100644 index 000000000..7010e5f45 --- /dev/null +++ b/xcm/v4/transfers.json @@ -0,0 +1,5122 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "7039200000000" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10016025641025640448" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000" + }, + "chains": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10016025641025640448" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "394791750" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "800000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "803700" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8799" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "8202500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "210000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "759878419452887" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "120085352824542" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10016025641025640448" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "99824309215780226800" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "121808020814554596791" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1200618133" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "77639751552" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "8544" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "803215" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "6439862" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "234933300000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7039200000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xtokensDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2738222496" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7039200000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "234933300000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "234933300000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v4/transfers_dev.json b/xcm/v4/transfers_dev.json new file mode 100644 index 000000000..b76f738f8 --- /dev/null +++ b/xcm/v4/transfers_dev.json @@ -0,0 +1,6013 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "7039200000000" + }, + "instructions": "xtokensReserve" + } + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10353145803353" + }, + "instructions": "xtokensReserve" + } + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {} + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "10016025641025640448" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527": "200000000", + "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443": "1000000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": "1000000000", + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": "1000000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000" + }, + "chains": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "234933300000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7039200000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xtokensDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2738222496" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1200618133" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7039200000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "234933300000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assets": [ + { + "assetId": 1, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assets": [ + { + "assetId": 0, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "523779593547" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10016025641025640448" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "394791750" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "77639751552" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "8544" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "803215" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "6439862" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "131352192005380" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "20000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "133333333333" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "12019230769230" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "800000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "25000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "803700" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8799" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "8202500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "210000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "234933300000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "187969924812030" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "49564722606073" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assets": [ + { + "assetId": 7, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "50000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "234933300000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "7039200000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "115534810638445" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "759878419452887" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3529278897735" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND-Westmint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10353145803353" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "120306304551951" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5000000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "117205" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "10016025641025640448" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "8865248226" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2738222496" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "30718568454" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "423833805788" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "87990000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "511456628477" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "99824309215780226800" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8799000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "33068783068" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "92895362664" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "121808020814554596791" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v5/transfers.json b/xcm/v5/transfers.json new file mode 100644 index 000000000..841e0fccf --- /dev/null +++ b/xcm/v5/transfers.json @@ -0,0 +1,5722 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensReserve" + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensReserve" + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensReserve" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensReserve" + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensReserve" + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkDeliveryFee": {}, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000", + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": "1000000000", + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": "150000000", + "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f": "200000000", + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": "1000000000" + }, + "chains": [ + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "394791750" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "13756927798" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "651856003039514" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "800000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "21446063" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "803700" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8037" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "8202500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "210000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8202500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "651856003039514" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "2343508113867" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "21264531249466" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "9691150827" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "85633534978437939200" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "104492097095609548800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1905148259" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [] + }, + { + "assetId": 16, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "112679492770376" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "112679492770376" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "7604986702" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "72651898770620" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assets": [ + { + "assetId": 9, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "69880098599534690304" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "237" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assets": [ + { + "assetId": 0, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "9000000003" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + } + ] +} diff --git a/xcm/v5/transfers_dev.json b/xcm/v5/transfers_dev.json new file mode 100644 index 000000000..736f3fb5c --- /dev/null +++ b/xcm/v5/transfers_dev.json @@ -0,0 +1,8745 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensReserve" + } + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8800337932977" + }, + "instructions": "xtokensReserve" + } + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {} + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensReserve" + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensReserve" + } + }, + "KMA": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "multiLocation": { + "parachainId": 2084 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "3082280000" + }, + "instructions": "xtokensReserve" + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensReserve" + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkDeliveryFee": {}, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527": "200000000", + "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443": "1000000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": "1000000000", + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": "1000000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000", + "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1": "100000000", + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": "1000000000", + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": "150000000", + "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f": "200000000", + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": "1000000000" + }, + "chains": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xtokensDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1894775520" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3082280000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "29941666751" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1200618133" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "112679492770376" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3082280000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assets": [ + { + "assetId": 1, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assets": [ + { + "assetId": 0, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "523779593547" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3959149500" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "394791750" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "13756927798" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "651856003039514" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66602678571" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "21446063" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "7804" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "803215" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "7861844" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "210000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "112679492770376" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "20000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "133333333333" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "237" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "800000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "21446063" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "803700" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8037" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "8202500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "210000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8202500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assets": [ + { + "assetId": 7, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "651856003039514" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "2343508113867" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "7604986702" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND-Westmint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8800337932977" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "73253369325045" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "21264531249466" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "9691150827" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "7604986702" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1894775520" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "85633534978437939200" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "2298688790" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "175000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "104492097095609548800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assets": [ + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "11736475948120176" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assets": [ + { + "assetId": 6, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "69880098599534690304" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "297183123807" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "56839132328" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "203120000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "438749232815" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "811622433244" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assets": [ + { + "assetId": 0, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "9000000003" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "11914479166666665984" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v6/transfers.json b/xcm/v6/transfers.json new file mode 100644 index 000000000..e1dfc3e90 --- /dev/null +++ b/xcm/v6/transfers.json @@ -0,0 +1,7529 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "44670000000" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "15000000000" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "27152009100000000000" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensReserve" + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensReserve" + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensReserve" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensReserve" + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkDeliveryFee": { + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + } + }, + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "1000000000", + "sizeFactor": "3333333", + "alwaysHoldingPays": false + } + }, + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "300000000", + "sizeFactor": "1000000" + } + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + } + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000", + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": "1000000000", + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": "150000000", + "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f": "200000000", + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": "1000000000" + }, + "chains": [ + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "29941666751" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1200618133" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67108792702" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "17287225" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "7798" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "1004729" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "37500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9847549" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "262500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1905148259" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [] + }, + { + "assetId": 16, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182474112" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "179650006" + }, + "instructions": "xtokensDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "1796925" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "112679492770376" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6429600000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "1796925" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "112679492770376" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20746401591009" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "1796925" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "970000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "35100000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "1796925" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "7604986702" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1170736813194" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "1796925" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "72651898770620" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assets": [ + { + "assetId": 9, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "69880098599534690304" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214587900000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "42892125000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3159557661927330300" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "1796925" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214320000027" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "10310606971154" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "345000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "237" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "871400000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "485908649173955" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "161248590225564" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "42518725552201" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "123456790123456" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assets": [ + { + "assetId": 0, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "9000000003" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "5041493004" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "32810000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "21609032" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "262500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "37500000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "1005251" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "32810000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 23, + "fee": { + "mode": { + "type": "proportional", + "value": "25188744" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8982500000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28583374669" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "394791750" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "13756927798" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28367807540" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "803700000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "802500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27152009000000004096" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "803700000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27152009000000004096" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 23, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28583374669" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "803700000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27152009000000004096" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "651856003039514" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28583374669" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "21264531249466" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "27911692308" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27152009000000004096" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "85633534978437939200" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28583374669" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "803700000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "2343508113867" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28583374669" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "287569387880" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "442083290712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041972" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4289212500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "803700000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28583374669" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081570" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "99110670795111" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "651856003039514" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "3027565432831" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "100544" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "27152009000000004096" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "28583374669" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "67139327115" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "105286133131294425088" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "311912073671" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "5880008503401360384" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +} diff --git a/xcm/v6/transfers_dev.json b/xcm/v6/transfers_dev.json new file mode 100644 index 000000000..4ca4711f3 --- /dev/null +++ b/xcm/v6/transfers_dev.json @@ -0,0 +1,8898 @@ +{ + "assetsLocation": { + "KAR": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0080" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensReserve" + } + }, + "KSM": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensReserve" + } + }, + "KSM-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": {} + }, + "DOT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": {} + }, + "MOVR": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "multiLocation": { + "parachainId": 2023, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "multiLocation": { + "parachainId": 2001, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "6430144517440" + }, + "instructions": "xtokensReserve" + } + }, + "UNIT": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensReserve" + } + }, + "ACA": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "multiLocation": { + "parachainId": 2000, + "generalKey": "0x0000" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensReserve" + } + }, + "DOT": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensReserve" + } + }, + "GLMR": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "multiLocation": { + "parachainId": 2004, + "palletInstance": 10 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensReserve" + } + }, + "RMRK": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "8" + } + }, + "KINT": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000c" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensReserve" + } + }, + "HKO": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "multiLocation": { + "parachainId": 2085, + "generalKey": "0x484b4f" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "607385811467444" + }, + "instructions": "xtokensReserve" + } + }, + "PARA": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "multiLocation": { + "parachainId": 2012, + "generalKey": "0x50415241" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensReserve" + } + }, + "INTR": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0002" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensReserve" + } + }, + "iBTC": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "multiLocation": { + "parachainId": 2032, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensReserve" + } + }, + "kBTC": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "multiLocation": { + "parachainId": 2092, + "generalKey": "0x000b" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensReserve" + } + }, + "BSX": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "multiLocation": { + "parachainId": 2090, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "WND": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "multiLocation": {}, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8800337932977" + }, + "instructions": "xtokensReserve" + } + }, + "WND-Westmint": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "multiLocation": {} + }, + "TNKR": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "multiLocation": { + "parachainId": 2125, + "generalIndex": "0" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemine": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensReserve" + } + }, + "USDT-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1984" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + }, + "XRT": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "multiLocation": { + "parachainId": 2048 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensReserve" + } + }, + "ASTR": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "multiLocation": { + "parachainId": 2006 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensReserve" + } + }, + "SDN": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "multiLocation": { + "parachainId": 2007 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "1004710080859067392" + }, + "instructions": "xtokensReserve" + } + }, + "CFG": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "multiLocation": { + "parachainId": 2031, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensReserve" + } + }, + "KMA": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "multiLocation": { + "parachainId": 2084 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "3082280000" + }, + "instructions": "xtokensReserve" + } + }, + "USDC-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "1337" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensReserve" + } + }, + "BNC-Polkadot": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0001" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensReserve" + } + }, + "vDOT": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "multiLocation": { + "parachainId": 2030, + "generalKey": "0x0900" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "802500" + }, + "instructions": "xtokensReserve" + } + }, + "SUB": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "multiLocation": { + "parachainId": 2101 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensReserve" + } + }, + "MANTA": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "multiLocation": { + "parachainId": 2104 + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensReserve" + } + }, + "DED-Statemint": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "multiLocation": { + "parachainId": 1000, + "palletInstance": 50, + "generalIndex": "30" + }, + "reserveFee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xtokensReserve" + } + } + }, + "instructions": { + "xtokensDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xtokensReserve": [ + "WithdrawAsset", + "ClearOrigin", + "BuyExecution", + "DepositReserveAsset" + ], + "xcmPalletDest": [ + "ReserveAssetDeposited", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ], + "xcmPalletTeleportDest": [ + "ReceiveTeleportedAsset", + "ClearOrigin", + "BuyExecution", + "DepositAsset" + ] + }, + "networkDeliveryFee": { + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + } + }, + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "30000000000", + "sizeFactor": "100000000", + "alwaysHoldingPays": false + } + }, + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "1000000000", + "sizeFactor": "3333333", + "alwaysHoldingPays": false + } + }, + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": { + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "30000000000", + "sizeFactor": "10000000" + } + }, + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": { + "toParachain": { + "type": "exponential", + "factorPallet": "Dmp", + "sizeBase": "300000000", + "sizeFactor": "1000000" + } + }, + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "1000000000", + "sizeFactor": "333333", + "alwaysHoldingPays": false + } + }, + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "16912512364", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + }, + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": { + "toParent": { + "type": "exponential", + "factorPallet": "ParachainSystem", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + }, + "toParachain": { + "type": "exponential", + "factorPallet": "XcmpQueue", + "sizeBase": "300000000", + "sizeFactor": "100000", + "alwaysHoldingPays": false + } + } + }, + "networkBaseWeight": { + "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe": "1000000000", + "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b": "200000000", + "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b": "200000000", + "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed": "200000000", + "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527": "200000000", + "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443": "1000000000", + "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3": "1000000000", + "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c": "200000000", + "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d": "200000000", + "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a": "1000000000", + "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b": "200000000", + "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f": "1000000000", + "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b": "150000000", + "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d": "1000000000", + "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d": "200000000", + "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97": "150000000", + "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72": "200000000", + "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6": "1000000000", + "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa": "150000000", + "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755": "100000000", + "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e": "1000000000", + "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9": "1000000000", + "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2": "100000000", + "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b": "200000000", + "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d": "100000000", + "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc": "1000000000", + "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86": "1000000000", + "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5": "1000000000", + "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464": "1000000000", + "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2": "1000000000", + "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82": "200000000", + "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1": "100000000", + "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108": "1000000000", + "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf": "150000000", + "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f": "200000000", + "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb": "1000000000" + }, + "chains": [ + { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assets": [ + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "154320987654320" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214606073269560000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3949447077409162752" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "43875000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20748158586573" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6430144517440" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "179650006" + }, + "instructions": "xtokensDest", + "asset": { + "originAssetId": 2, + "destAssetId": 0, + "location": "KSM-Statemine", + "locationPath": { + "type": "absolute" + } + } + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "607385811467444" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1050000372" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3082280000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1004710080859067392" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "29941666751" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "00dcb981df86429de8bbacf9803401f09485366c44efbf53af9ecfab03adc7e5", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1200618133" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assets": [ + { + "assetId": 4, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "concrete", + "path": { + "parents": 1, + "parachainId": 2001, + "generalKey": "0x0001" + } + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "30460406568099" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6430144517440" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "154320987654320" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "607385811467444" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "1658565192363043" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214606073269560000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3949447077409162752" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "43875000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "55000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "3082280000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assets": [ + { + "assetId": 1, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "35047875048" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e1ea3ab1d46ba8f4898b6b4b9c54ffc05282d299f89e84bd0fd08067758c9443", + "assets": [ + { + "assetId": 0, + "assetLocation": "UNIT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91bc6e169807aaa54802737e1c504b2577d4fafedd5a02c10293b1cd60e39527", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "523779593547" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assets": [ + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 22, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "98974000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 23, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8982500000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "dcf691b5a3fbe24adc99ddc959c0561b973e329b1aef4c4b22e7bb2ddecb4464", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "394791750" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "45871559633" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assets": [ + { + "assetId": 0, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "138917929637904" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1883239171374764" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "2089595672670131" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assets": [ + { + "assetId": 0, + "assetLocation": "KSM-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "RMRK", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "82320119048" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "17287225" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "7798" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "100473" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "46875000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9310858" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "262500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assets": [ + { + "assetId": 8, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3949447077409162752" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "43875000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "30460406568099" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "20748158586573" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "20000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "133333333333" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "154320987654320" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assets": [ + { + "assetId": 0, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "431250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "297" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "79336744814" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + }, + { + "assetId": 1, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "80000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "30000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "17269955" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "1005251" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "0" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "32810000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "11888560" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "262500" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "47469788" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 23, + "fee": { + "mode": { + "type": "proportional", + "value": "17252719" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assets": [ + { + "assetId": 0, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "4800000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "1658565192363043" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "63129375000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "1212500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214606073269560000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "333333333333000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1262587500000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "43875000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "0f62b701fb12d02237a33b84818c11f621653d2b1614c777973babf4652b535d", + "assets": [ + { + "assetId": 5, + "assetLocation": "HKO", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "607385811467444" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "80000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "1658565192363043" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 15, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "154320987654320" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d43540ba6d3eb4897c28a77d48cb5b729fea37603cbbfc7a86a73b72adb3be8d", + "assets": [ + { + "assetId": 7, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214606073269560000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "BNC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "6430144517440" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assets": [ + { + "assetId": 6, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "138917929637904" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "277000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "PARA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "2089595672670131" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "8457550059064" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 12, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 13, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 14, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assets": [ + { + "assetId": 0, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "9590000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "3404263581899470" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 7, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assets": [ + { + "assetId": 0, + "assetLocation": "BSX", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "355657856051" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "879987328182475" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "1158776" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "4883396893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "800000000000" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "67f9723393ef76214df0118c34bbbd3dbebc8ed46a10973a8c969d48fe7598c9", + "assets": [ + { + "assetId": 0, + "assetLocation": "WND-Westmint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "e143f23803ac50e8f6f8e62695d1ce9e4e1d68aa36c1cd2cfd15340213f3423e", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8800337932977" + }, + "instructions": "xcmPalletTeleportDest" + } + }, + "type": "xcmpallet-teleport" + } + ] + } + ] + }, + { + "chainId": "d42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2", + "assets": [ + { + "assetId": 0, + "assetLocation": "TNKR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "150387072218408" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assets": [ + { + "assetId": 1, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "21264531249466" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 19, + "fee": { + "mode": { + "type": "proportional", + "value": "27911692308" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 8, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "803768064687253888" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8799873281824740352" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 15, + "assetLocation": "USDC-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 16, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "79550000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 17, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 11, + "assetLocation": "BNC-Polkadot", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 19, + "assetLocation": "vDOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "802500" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 18, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "631ccc82a078481584041656af292834e1ae6daab61d2875b4dd0c14bb9b17bc", + "assets": [ + { + "assetId": 0, + "assetLocation": "XRT", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 17, + "fee": { + "mode": { + "type": "proportional", + "value": "4883396893" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "1050000372" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "46ee89aa2eedd13e988962630ec9fb7565964cf5023bb351f2b6b25c1b68b0b2", + "assets": [ + { + "assetId": 0, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "9eb76c5184c4ab8679d2d5d819fdf90b9c001403e9e17da2e14b6d8aec4029c6", + "assets": [ + { + "assetId": 0, + "assetLocation": "ASTR", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "132260688624999923712" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "112563722370570600448" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + }, + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "1376030024" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "10046250000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "42682928123" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "18012616398" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17356651607" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "53711462025" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "5d3c298622d5634ed019bf61ea4b71655030015bde9beb0d6a24743714462c86", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "10204081571" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "USDT-Statemint", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "17500000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 6, + "assetLocation": "ACA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "138917929637904" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "196078431372549" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "GLMR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4321806250000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "8037000000000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "262e1b2ad728475fd6fe88e62d34c200abe6fd693931ddad144059b1eb884e5b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "73389109056216060000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "62141510437275262976" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "INTR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "24016821864" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 9, + "fee": { + "mode": { + "type": "proportional", + "value": "80370000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "2447575392893" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "10893246187363" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "iBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "bf88efe70e9e0e916416e8bed61f2b45717f517d7f3523e33c7b001e5ffcbc72", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "79491" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fc41b9bd8ef8fe53d58c7ea67c794c7ec9a73daf05e6d54b14ff6342c99ba64c", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "8038" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "22000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "26453" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "e61a41c53f5dcd0beb09df93b34402aada44cb05117b71059cce40a2723a4e97", + "assetId": 13, + "fee": { + "mode": { + "type": "proportional", + "value": "172577" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "b3db41421702df9a7fcac62b53ffeac85f7853cc4e689e0b93aeb3db18c09d82", + "assets": [ + { + "assetId": 0, + "assetLocation": "CFG", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 11, + "fee": { + "mode": { + "type": "proportional", + "value": "23888832078357995520" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 10, + "fee": { + "mode": { + "type": "proportional", + "value": "24087860729545437184" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4ac80c99289841dd946ef92765bf659a307d39189b3ce374a92b5f0415ee17a1", + "assets": [ + { + "assetId": 2, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214606073269560000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3949447077409162752" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "KMA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 12, + "fee": { + "mode": { + "type": "proportional", + "value": "5953003667418515" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 1, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "154320987654320" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assets": [ + { + "assetId": 6, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "d611f22d291c5b7b69f1e105cca03352984c344c4421977efaa4cbdd1834e2aa", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1089250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "66666666667" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 9, + "assetLocation": "KAR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646872" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "8037680646800" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 5, + "fee": { + "mode": { + "type": "proportional", + "value": "154320987654320" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 4, + "fee": { + "mode": { + "type": "proportional", + "value": "107162405931142" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 10, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 5, + "assetLocation": "KINT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "270826666660" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 3, + "fee": { + "mode": { + "type": "proportional", + "value": "24692790376122" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "214338150611" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "SDN", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 16, + "fee": { + "mode": { + "type": "proportional", + "value": "41310942824506654720" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 3, + "assetLocation": "MOVR", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 8, + "fee": { + "mode": { + "type": "proportional", + "value": "214606073269560000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "43218062500000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 14, + "fee": { + "mode": { + "type": "proportional", + "value": "80376806468720000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "3949447077409162752" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 4, + "assetLocation": "kBTC", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "896382" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "cceae7f3b9947cdb67369c026ef78efa5f34a08fe5808d373c04421ecf4f1aaf", + "assets": [ + { + "assetId": 1, + "assetLocation": "KSM", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "b0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "26729534265" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9f28c6a68e0fc9646eff64935684f6eeeece527e37bbe1f213d22caa1d9d6bed", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "100462500055" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "a85cfb9b9fd4d622a5b28289a02347af987d8f73fa3108450e2b4a11c1ce5755", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "301013380395" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "baf5aabe40646d11f0ee8abbdc64f4a4b7674925cba08e4a05ff9ebed6e2126b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "46064814619" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "9af9a64e6e4da8e3073901c3ff0cc4c3aad9563786d89daf6ad820b6e14a0b8b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "253900000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "401a1f9dca3da46f5c4091016c8a2f26dcea05865116b286f60f668207d1474b", + "assetId": 2, + "fee": { + "mode": { + "type": "proportional", + "value": "449135489738" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "64a1c658a48b2e70a7fb1ad4c39eea35022568c20fc44a6e2e3d0a57aee6053b", + "assetId": 1, + "fee": { + "mode": { + "type": "proportional", + "value": "1014528041555" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + }, + { + "destination": { + "chainId": "f1cf9022c7ebb34b162d5b5e34e705a5a740b2d0ecc1009fb89023e62a488108", + "assetId": 6, + "fee": { + "mode": { + "type": "proportional", + "value": "1250000000" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 2, + "assetLocation": "USDT-Statemine", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "48239ef607d7928874027a43a67689209727dfb3d3dc5e5b03a39bdc2eda771a", + "assetId": 7, + "fee": { + "mode": { + "type": "proportional", + "value": "902213" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + }, + { + "chainId": "4a12be580bb959937a1c7a61d5cf24428ed67fa571974b4007645d1886e7c89f", + "assets": [ + { + "assetId": 0, + "assetLocation": "SUB", + "assetLocationPath": { + "type": "relative" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "afdc188f45c71dacbaa0b62e16a91f726c7b8699a9748cdf715459de6b7f366d", + "assetId": 18, + "fee": { + "mode": { + "type": "proportional", + "value": "9000000003" + }, + "instructions": "xcmPalletDest" + } + }, + "type": "xcmpallet" + } + ] + } + ] + }, + { + "chainId": "f3c7ad88f6a80f366c4be216691411ef0622e8b809b1046ea297ef106058d4eb", + "assets": [ + { + "assetId": 1, + "assetLocation": "DOT", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3", + "assetId": 0, + "fee": { + "mode": { + "type": "proportional", + "value": "4994684504" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + }, + { + "assetId": 0, + "assetLocation": "MANTA", + "assetLocationPath": { + "type": "absolute" + }, + "xcmTransfers": [ + { + "destination": { + "chainId": "fe58ea77779b7abda7da4ec526d14db9b1e9cd40a217c34892af80a9b332b76d", + "assetId": 22, + "fee": { + "mode": { + "type": "proportional", + "value": "5880008503401360384" + }, + "instructions": "xtokensDest" + } + }, + "type": "xtokens" + } + ] + } + ] + } + ] +}